diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-02-11 00:28:39 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-02-11 00:28:39 +0000 |
commit | c0b5a0446bf63bdac664421f49742f1156c1911a (patch) | |
tree | 9d7822f91325d23e512e77701c9f1280d968ea20 /test/ext/associationproxy.py | |
parent | 90c572b513fb33cb5cd17134efb6018abc76bb1f (diff) | |
download | sqlalchemy-c0b5a0446bf63bdac664421f49742f1156c1911a.tar.gz |
- updated the naming scheme of the base test classes in test/testlib/testing.py;
tests extend from either TestBase or ORMTest, using additional mixins for
special assertion methods as needed
Diffstat (limited to 'test/ext/associationproxy.py')
-rw-r--r-- | test/ext/associationproxy.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ext/associationproxy.py b/test/ext/associationproxy.py index 1ebf07cb3..c4c2091ed 100644 --- a/test/ext/associationproxy.py +++ b/test/ext/associationproxy.py @@ -33,7 +33,7 @@ class ObjectCollection(object): def __iter__(self): return iter(self.values) -class _CollectionOperations(PersistTest): +class _CollectionOperations(TestBase): def setUp(self): collection_class = self.collection_class @@ -591,7 +591,7 @@ class CustomObjectTest(_CollectionOperations): except TypeError: pass -class ScalarTest(PersistTest): +class ScalarTest(TestBase): def test_scalar_proxy(self): metadata = MetaData(testing.db) @@ -708,7 +708,7 @@ class ScalarTest(PersistTest): p2.bar = 'quux' -class LazyLoadTest(PersistTest): +class LazyLoadTest(TestBase): def setUp(self): metadata = MetaData(testing.db) |