summaryrefslogtreecommitdiff
path: root/test/python
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2008-08-06 23:21:06 -0400
committerJohn Wiegley <johnw@newartisans.com>2008-08-06 23:21:06 -0400
commit6ddc21dc5fe75c80df1bf383e5bfc2320deb8624 (patch)
tree57e520b88a847bc2bec5b6f6ddc59923041c68d8 /test/python
parent54f2a8012f206429790df35d28b2da0586d2ce6b (diff)
downloadfork-ledger-6ddc21dc5fe75c80df1bf383e5bfc2320deb8624.tar.gz
fork-ledger-6ddc21dc5fe75c80df1bf383e5bfc2320deb8624.tar.bz2
fork-ledger-6ddc21dc5fe75c80df1bf383e5bfc2320deb8624.zip
'make distcheck' now works.
Diffstat (limited to 'test/python')
-rwxr-xr-xtest/python/PyUnitTests.py5
-rw-r--r--test/python/UnitTests.py9
2 files changed, 0 insertions, 14 deletions
diff --git a/test/python/PyUnitTests.py b/test/python/PyUnitTests.py
deleted file mode 100755
index 3c19093f..00000000
--- a/test/python/PyUnitTests.py
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-PYTHONPATH="%builddir%":"%srcdir%":$PYTHONPATH \
-DYLD_LIBRARY_PATH="%builddir%/.libs":"%builddir%/gdtoa/.libs":$DYLD_LIBRARY_PATH \
- python "%srcdir%"/tests/python/UnitTests.py
diff --git a/test/python/UnitTests.py b/test/python/UnitTests.py
deleted file mode 100644
index 843e9fc1..00000000
--- a/test/python/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))