summaryrefslogtreecommitdiff
path: root/test/t/test_tox.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/t/test_tox.py')
-rw-r--r--test/t/test_tox.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/test/t/test_tox.py b/test/t/test_tox.py
index b6149362..f012a032 100644
--- a/test/t/test_tox.py
+++ b/test/t/test_tox.py
@@ -6,10 +6,14 @@ class TestTox:
def test_1(self, completion):
assert completion
- @pytest.mark.complete("tox -e ")
+ @pytest.mark.complete("tox -e ", cwd="tox")
def test_2(self, completion):
- assert completion == "ALL"
+ assert all(x in completion for x in "py37 ALL".split())
- @pytest.mark.complete("tox -e foo,")
+ @pytest.mark.complete("tox -e foo,", cwd="tox")
def test_3(self, completion):
- assert completion == "foo,ALL"
+ assert all(x in completion for x in "py37 ALL".split())
+
+ @pytest.mark.complete("tox -e foo -- ", cwd="tox")
+ def test_default_after_dashdash(self, completion):
+ assert "tox.ini" in completion