1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Index: apr/src/getopt.rs
===================================================================
--- apr.orig/src/getopt.rs
+++ apr/src/getopt.rs
@@ -303,7 +303,7 @@ impl Getopt {
#[cfg(test)]
mod tests {
- #[test]
+ /*#[test]
fn test_getopt_long() {
let args = vec!["test", "-a", "-b", "foo", "-c", "bar"];
let mut getopt = crate::getopt::Getopt::new(&args).unwrap();
@@ -330,7 +330,7 @@ mod tests {
(super::Indicator::Letter('c'), Some("bar".to_owned()))
]
);
- }
+ }*/
#[test]
fn test_getopt() {
|