summaryrefslogtreecommitdiff
path: root/functional_tests/test_doctest_plugin.py
diff options
context:
space:
mode:
authorJason Pellerin <jpellerin@gmail.com>2007-04-12 18:23:33 +0000
committerJason Pellerin <jpellerin@gmail.com>2007-04-12 18:23:33 +0000
commitc870e2265f66d62106d98c76523989ebcc39cc01 (patch)
tree79e6a40ff532158b0c6fd5aee31255c2455a6067 /functional_tests/test_doctest_plugin.py
parentcde35dcd492b0d1d955a7a3971b147c497022396 (diff)
downloadnose-c870e2265f66d62106d98c76523989ebcc39cc01.tar.gz
Updated TODO. Fixed bugs in unit and functional tests. Changed some attibute names in plugin tester to be more appropriate.
Diffstat (limited to 'functional_tests/test_doctest_plugin.py')
-rw-r--r--functional_tests/test_doctest_plugin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/functional_tests/test_doctest_plugin.py b/functional_tests/test_doctest_plugin.py
index 47b05e9..8639842 100644
--- a/functional_tests/test_doctest_plugin.py
+++ b/functional_tests/test_doctest_plugin.py
@@ -6,8 +6,8 @@ from nose.plugins import PluginTester
support = os.path.join(os.path.dirname(__file__), 'support')
class TestDoctestPlugin(PluginTester, unittest.TestCase):
- activate_opt = '--with-doctest'
- addargs = ['-v']
+ activate = '--with-doctest'
+ args = ['-v']
plugins = [Doctest()]
suitepath = os.path.join(support, 'dtt')