summaryrefslogtreecommitdiff
path: root/tests/testsentinel.py
diff options
context:
space:
mode:
authorfuzzyman <devnull@localhost>2009-08-22 21:36:03 +0000
committerfuzzyman <devnull@localhost>2009-08-22 21:36:03 +0000
commite9f42e4672b97251fa40477c360ad3377f66faef (patch)
tree05404494943ab19668d719921c3a60be48771869 /tests/testsentinel.py
parentea82e3bcc5e5c02333a19ad34bc876ddb8f19ae7 (diff)
downloadmock-e9f42e4672b97251fa40477c360ad3377f66faef.tar.gz
Switching to using test discovery to run tests.
Diffstat (limited to 'tests/testsentinel.py')
-rw-r--r--tests/testsentinel.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testsentinel.py b/tests/testsentinel.py
index 5ecdb88..ea29648 100644
--- a/tests/testsentinel.py
+++ b/tests/testsentinel.py
@@ -9,7 +9,6 @@ if not this_dir in sys.path:
sys.path.insert(0, this_dir)
from testcase import TestCase
-from testutils import RunTests
from mock import sentinel, DEFAULT
@@ -31,4 +30,5 @@ class SentinelTest(TestCase):
if __name__ == '__main__':
- RunTests(SentinelTest)
+ unittest.main()
+ \ No newline at end of file