summaryrefslogtreecommitdiff
path: root/python/test/UnitTests.py
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2008-08-06 18:23:50 -0400
committerJohn Wiegley <johnw@newartisans.com>2008-08-06 18:23:50 -0400
commit54f2a8012f206429790df35d28b2da0586d2ce6b (patch)
tree6541a21a93c6413c1712887615034f38dfcc66b8 /python/test/UnitTests.py
parent0d6e72adbbf8414b3b6cf5922ab53519e2dacadd (diff)
downloadledger-54f2a8012f206429790df35d28b2da0586d2ce6b.tar.gz
ledger-54f2a8012f206429790df35d28b2da0586d2ce6b.tar.bz2
ledger-54f2a8012f206429790df35d28b2da0586d2ce6b.zip
Moved several tests around again (python/test -> test/python).
Diffstat (limited to 'python/test/UnitTests.py')
-rw-r--r--python/test/UnitTests.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/python/test/UnitTests.py b/python/test/UnitTests.py
deleted file mode 100644
index 843e9fc1..00000000
--- a/python/test/UnitTests.py
+++ /dev/null
@@ -1,9 +0,0 @@
-from unittest import TextTestRunner, TestSuite
-
-import tests.python.numerics.t_amount as t_amount
-
-suites = [
- t_amount.suite(),
-]
-
-TextTestRunner().run(TestSuite(suites))