summaryrefslogtreecommitdiff
path: root/pystache/commands
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-04-20 20:56:54 -0700
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-04-20 20:56:54 -0700
commit3e20e42308a4cfafd1190d843f7c5897245e7fe7 (patch)
tree864562812f3d97f7e99dc12f134c081a57a1e886 /pystache/commands
parent60a6c396b55b986f823d34e67b25adc44791e684 (diff)
downloadpystache-3e20e42308a4cfafd1190d843f7c5897245e7fe7.tar.gz
Removed test_doctests.py (and use of the load_tests protocol).
Diffstat (limited to 'pystache/commands')
-rw-r--r--pystache/commands/test.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/pystache/commands/test.py b/pystache/commands/test.py
index 4bf0a4b..61b2a78 100644
--- a/pystache/commands/test.py
+++ b/pystache/commands/test.py
@@ -7,13 +7,12 @@ This module provides a command to test pystache (unit tests, doctests, etc).
import sys
-import pystache
-from pystache.tests.main import Tester
+from pystache.tests.main import TestHarness
def main(sys_argv=sys.argv):
- tester = Tester()
- tester.run_tests(package=pystache, sys_argv=sys_argv)
+ harness = TestHarness()
+ harness.run_tests(sys_argv=sys_argv)
if __name__=='__main__':