summaryrefslogtreecommitdiff
path: root/tests/test_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_config.py')
-rw-r--r--tests/test_config.py15
1 files changed, 11 insertions, 4 deletions
diff --git a/tests/test_config.py b/tests/test_config.py
index 615de30..43b5a34 100644
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -909,14 +909,21 @@ class TestConfigTestEnv:
configs = newconfig([], inisource).envconfigs
assert configs["py27"].setenv["X"] == "1"
assert "X" not in configs["py26"].setenv
-
+
def test_period_in_factor(self, newconfig):
inisource="""
- [tox]
- envlist = py27-{django1.6,django1.7}
+ [tox]
+ envlist = py27-{django1.6,django1.7}
+
+ [testenv]
+ deps =
+ django1.6: Django==1.6
+ django1.7: Django==1.7
"""
configs = newconfig([], inisource).envconfigs
- assert list(configs) == ["py27-django1.6", "py27-django-1.7"]
+ assert sorted(configs) == ["py27-django1.6", "py27-django1.7"]
+ assert [d.name for d in configs["py27-django1.6"].deps] \
+ == ["Django==1.6"]
class TestGlobalOptions: