summaryrefslogtreecommitdiff
path: root/test/t/test_mr.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/t/test_mr.py')
-rw-r--r--test/t/test_mr.py13
1 files changed, 8 insertions, 5 deletions
diff --git a/test/t/test_mr.py b/test/t/test_mr.py
index 768e1b35..bfad643f 100644
--- a/test/t/test_mr.py
+++ b/test/t/test_mr.py
@@ -19,7 +19,7 @@ class TestMr:
"mr -c shared/default/foo.d/", xfail="! man -h &>/dev/null"
)
def test_3(self, completion):
- assert completion == "shared/default/foo.d/foo"
+ assert completion == "foo"
@pytest.mark.complete(
"mr bootstrap shared/default/",
@@ -29,18 +29,21 @@ class TestMr:
def test_4(self, completion):
assert completion == ["bar", "bar bar.d/", "foo", "foo.d/"]
- @pytest.mark.xfail # "clean" doesn't exist before mr 1.20141023
@pytest.mark.complete(
- "mr clean -", require_cmd=True, xfail="! man -h &>/dev/null"
+ "mr clean -",
+ require_cmd=True,
+ xfail="! man -h &>/dev/null",
+ # "clean" does not exist before mr 1.20141023
+ skipif="! mr help 2>&1 | command grep -qwF clean",
)
def test_5(self, completion):
- assert completion == "-f"
+ assert completion == "f"
@pytest.mark.complete(
"mr commit -", require_cmd=True, xfail="! man -h &>/dev/null"
)
def test_6(self, completion):
- assert completion == "-m"
+ assert completion == "m"
@pytest.mark.complete(
"mr status ", require_cmd=True, xfail="! man -h &>/dev/null"