summaryrefslogtreecommitdiff
path: root/test/UnitTests.py
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-01-28 20:49:26 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-01-28 20:49:26 -0400
commite851c02d2747be0acc336bc278da9e0460b75738 (patch)
treedf813c5c572922cf05a6317b7eb1d6062dedac05 /test/UnitTests.py
parent3020f0f8513d8cef04d4a291dc9b5fa50e1b832c (diff)
downloadfork-ledger-e851c02d2747be0acc336bc278da9e0460b75738.tar.gz
fork-ledger-e851c02d2747be0acc336bc278da9e0460b75738.tar.bz2
fork-ledger-e851c02d2747be0acc336bc278da9e0460b75738.zip
Unit test for Python are now auto-generated from the C++ tests.
Diffstat (limited to 'test/UnitTests.py')
-rw-r--r--test/UnitTests.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/UnitTests.py b/test/UnitTests.py
deleted file mode 100644
index 6e75a147..00000000
--- a/test/UnitTests.py
+++ /dev/null
@@ -1,9 +0,0 @@
-from unittest import TextTestRunner, TestSuite
-
-import test.python.math.t_amount as t_amount
-
-suites = [
- t_amount.suite(),
-]
-
-TextTestRunner().run(TestSuite(suites))