]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Refactored test support code, moved most into 'testlib/'
authorJason Kirtland <jek@discorporate.us>
Mon, 23 Jul 2007 01:50:54 +0000 (01:50 +0000)
committerJason Kirtland <jek@discorporate.us>
Mon, 23 Jul 2007 01:50:54 +0000 (01:50 +0000)
commit0296f9c412cd3d21ac40ab03de24cec3f33c7064
tree4320719798e86976079ea5dc25137185a052df4d
parent9e5d28f8425bde0165fb1096e6b9bd8b5a0307b6
Refactored test support code, moved most into 'testlib/'
Cleaned up imports, all tests should be runnable stand-alone or suite now
Updated most of the perf tests
Removed dead test suites
Added new profiling decorator
Added new profilable perf test, 'ormsession' to try to capture a typical workload
82 files changed:
test/base/dependency.py
test/base/utils.py
test/dialect/mysql.py
test/dialect/postgres.py
test/engine/bind.py
test/engine/execute.py
test/engine/metadata.py
test/engine/parseconnect.py
test/engine/pool.py
test/engine/reconnect.py
test/engine/reflection.py
test/engine/transaction.py
test/ext/activemapper.py
test/ext/assignmapper.py
test/ext/associationproxy.py
test/ext/orderinglist.py
test/orm/association.py
test/orm/assorted_eager.py
test/orm/attributes.py
test/orm/cascade.py
test/orm/collection.py
test/orm/compile.py
test/orm/cycles.py
test/orm/eager_relations.py
test/orm/entity.py
test/orm/fixtures.py
test/orm/generative.py
test/orm/inheritance/abc_inheritance.py
test/orm/inheritance/basic.py
test/orm/inheritance/concrete.py
test/orm/inheritance/magazine.py
test/orm/inheritance/manytomany.py
test/orm/inheritance/poly_linked_list.py
test/orm/inheritance/polymorph.py
test/orm/inheritance/polymorph2.py
test/orm/inheritance/productspec.py
test/orm/inheritance/single.py
test/orm/lazy_relations.py
test/orm/lazytest1.py
test/orm/manytomany.py
test/orm/mapper.py
test/orm/memusage.py
test/orm/merge.py
test/orm/onetoone.py
test/orm/query.py
test/orm/relationships.py
test/orm/session.py
test/orm/sessioncontext.py
test/orm/unitofwork.py
test/perf/cascade_speed.py
test/perf/masscreate.py
test/perf/masscreate2.py
test/perf/masseagerload.py
test/perf/massload.py
test/perf/masssave.py
test/perf/ormsession.py [new file with mode: 0644]
test/perf/poolload.py
test/perf/threaded_compile.py
test/perf/wsgi.py
test/sql/alltests.py
test/sql/case_statement.py
test/sql/constraints.py
test/sql/defaults.py
test/sql/generative.py
test/sql/labels.py
test/sql/query.py
test/sql/quote.py
test/sql/rowcount.py
test/sql/select.py
test/sql/selectable.py
test/sql/testtypes.py
test/sql/unicode.py
test/testbase.py
test/testlib/__init__.py [new file with mode: 0644]
test/testlib/config.py [new file with mode: 0644]
test/testlib/coverage.py [moved from test/coverage.py with 99% similarity]
test/testlib/profiling.py [new file with mode: 0644]
test/testlib/schema.py [new file with mode: 0644]
test/testlib/tables.py [moved from test/tables.py with 96% similarity]
test/testlib/testing.py [new file with mode: 0644]
test/zblog/tables.py
test/zblog/tests.py