summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorholger krekel <holger@merlinux.eu>2013-07-16 17:10:42 +0200
committerholger krekel <holger@merlinux.eu>2013-07-16 17:10:42 +0200
commite1027e0b825d97ff285c3634a7ce195072f403e1 (patch)
tree11ea3b757de62ecc7a5b0ea3a70d222f6e65121a /tests
parentbb6ee92b941f40cae66710689f87f16255b5be9e (diff)
downloadtox-e1027e0b825d97ff285c3634a7ce195072f403e1.tar.gz
remove obsolete tests - i think Lukasz left this in erranously
Diffstat (limited to 'tests')
-rw-r--r--tests/test_config.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/test_config.py b/tests/test_config.py
index 0602ff1..9da9790 100644
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -60,20 +60,6 @@ class TestVenvConfig:
envconfig = config.envconfigs['devenv']
assert envconfig.envdir == config.toxworkdir.join('foobar')
- def test_package_flag(self, tmpdir, newconfig):
- config = newconfig([], """
- [testenv:py27]
- """)
- envconfig = config.envconfigs['py27']
- assert envconfig.package == True
-
- config = newconfig([], """
- [testenv:py27]
- package = False
- """)
- envconfig = config.envconfigs['py27']
- assert envconfig.package == False
-
class TestConfigPackage:
def test_defaults(self, tmpdir, newconfig):
config = newconfig([], "")