summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-07-06 15:01:31 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-07-06 15:02:00 +0800
commitfece4231cd24409b0772a820cee18c2922d45e5b (patch)
tree15c84d5283f125c96ab2f82604b6a2ebf1022f60 /src
parenteac07027c3e9baff2d73ebfa7cc3ce752c0a8303 (diff)
Skip one test on windows
Diffstat (limited to 'src')
-rw-r--r--src/interactive/app_test/unit.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/interactive/app_test/unit.rs b/src/interactive/app_test/unit.rs
index e27d456..8910025 100644
--- a/src/interactive/app_test/unit.rs
+++ b/src/interactive/app_test/unit.rs
@@ -17,6 +17,8 @@ fn it_can_handle_ending_traversal_reaching_top_but_skipping_levels() -> Result<(
Ok(())
}
+// Won't work on windows as there are backslashes in the paths :D
+#[cfg_attr(windows, ignore)]
#[test]
fn it_can_handle_ending_traversal_without_reaching_the_top() -> Result<()> {
let (_, app) = initialized_app_and_terminal_from_fixture(&["sample-02"])?;