aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/plugin.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-12-03 20:16:56 -0500
committerW. Trevor King <wking@drexel.edu>2009-12-03 20:16:56 -0500
commitdc5ac53feb42841c48fe0a17a699aa96f5bb39c8 (patch)
treeb9ab22dcb7e911e2818d4836df13882f98de0f38 /libbe/plugin.py
parentc4a9b465fb512fdfa2d43ece22c786b021d8c2ce (diff)
downloadbugseverywhere-dc5ac53feb42841c48fe0a17a699aa96f5bb39c8.tar.gz
Remove _test() functions from plugin.py and cmdutil.py.
Testing should be handled through test.py, not by calling per-module _test() functions.
Diffstat (limited to 'libbe/plugin.py')
-rw-r--r--libbe/plugin.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/libbe/plugin.py b/libbe/plugin.py
index bd9bb65..e6b06fb 100644
--- a/libbe/plugin.py
+++ b/libbe/plugin.py
@@ -69,10 +69,3 @@ if plugin_path not in sys.path:
sys.path.append(plugin_path)
suite = doctest.DocTestSuite()
-
-def _test():
- import doctest
- doctest.testmod()
-
-if __name__ == "__main__":
- _test()