* move some test_pytest_terminal tests to become functional/acceptance tests

* refine pytest_namespace to not take a config object

--HG--
branch : 1.0.x
This commit is contained in:
holger krekel
2009-07-17 18:07:37 +02:00
parent e43e58afed
commit 04a98700d9
8 changed files with 74 additions and 122 deletions
+1 -1
View File
@@ -175,7 +175,7 @@ class TestPytestPluginInteractions:
def test_do_ext_namespace(self, testdir):
testdir.makeconftest("""
def pytest_namespace(config):
def pytest_namespace():
return {'hello': 'world'}
""")
p = testdir.makepyfile("""