summaryrefslogtreecommitdiff
path: root/test/alltests.py
diff options
context:
space:
mode:
authorRobert Leftwich <rtl@pobox.com>2006-01-16 06:22:52 +0000
committerRobert Leftwich <rtl@pobox.com>2006-01-16 06:22:52 +0000
commitc4085b0fbf78c533c50fea3fd778c770adb40a70 (patch)
tree670d51ea0140460620228d5601810a3eb95b1816 /test/alltests.py
parent8757832f4ec6c3e6b8eefd36e30978928c8f6013 (diff)
downloadsqlalchemy-c4085b0fbf78c533c50fea3fd778c770adb40a70.tar.gz
Fixed problem in Column.copy(), _make_proxy() with nullable and hidden not being reflected into new Column. Added test for same. Removed reference to non-existant columns test from list of tests in alltests.
Diffstat (limited to 'test/alltests.py')
-rw-r--r--test/alltests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/alltests.py b/test/alltests.py
index db02f8a4c..1365b5153 100644
--- a/test/alltests.py
+++ b/test/alltests.py
@@ -4,7 +4,7 @@ import unittest
testbase.echo = False
def suite():
- modules_to_test = ('attributes', 'historyarray', 'pool', 'engines', 'query', 'columns', 'sequence', 'select', 'types', 'mapper', 'objectstore', 'manytomany', 'dependency')
+ modules_to_test = ('attributes', 'historyarray', 'pool', 'engines', 'query', 'sequence', 'select', 'types', 'mapper', 'objectstore', 'manytomany', 'dependency')
# modules_to_test = ('engines', 'mapper')
alltests = unittest.TestSuite()
for module in map(__import__, modules_to_test):