Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/lib/runall.py
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-09-03 19:26:30 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-09-03 19:26:30 (GMT)
commit07107fb81baf6e2b96181b294c4c375367d102f9 (patch)
tree860cabf447df976064c9e4e9ff5dbf476400471f /tests/lib/runall.py
parent382910b0bac9216df4e3ffc79dce1e450fb88afd (diff)
#2896: Remove sugar.date module.
Diffstat (limited to 'tests/lib/runall.py')
-rw-r--r--tests/lib/runall.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/lib/runall.py b/tests/lib/runall.py
index 6ee9442..ae1bb3a 100644
--- a/tests/lib/runall.py
+++ b/tests/lib/runall.py
@@ -17,14 +17,12 @@
import unittest
-import test_date
import test_mime
runner = unittest.TextTestRunner()
loader = unittest.TestLoader()
suite = unittest.TestSuite()
-suite.addTest(loader.loadTestsFromModule(test_date))
suite.addTest(loader.loadTestsFromModule(test_mime))
runner.run(suite)