]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Added testbase.Table and testbase.Column, interceptors that can set up
authorJason Kirtland <jek@discorporate.us>
Fri, 15 Jun 2007 22:35:53 +0000 (22:35 +0000)
committerJason Kirtland <jek@discorporate.us>
Fri, 15 Jun 2007 22:35:53 +0000 (22:35 +0000)
commit5b779d30c31f6d07180a6b2e5f95914aed7a7071
tree5282ed3dcb569f9dcdfddbb174394ccb448049e1
parent1fba10839c223c803f3004b616b4af8354f8cf23
- Added testbase.Table and testbase.Column, interceptors that can set up
  test-run- and dialect-specific options on those objects
  All tests re-pointed to go through the interceptors
- Removed mysql_engine= from table declarations, replaced with a general
  flag indicating storage requirements
- Added ability to choose a global MySQL storage engine for all tests
  --mysql-engine=<whatever>
  If none is specified, tests use the old db-default/InnoDB behavior
- Added ability to append arbitrary table creation params
  --table-option=KEY=VALUE
  For MySQL 3, use this to set mysql_type instead of --mysql-engine
- Removed a couple dead test modules
62 files changed:
test/dialect/mysql.py
test/engine/autoconnect_engine.py [deleted file]
test/engine/execute.py
test/engine/metadata.py
test/engine/reflection.py
test/engine/transaction.py
test/ext/assignmapper.py
test/ext/associationproxy.py
test/ext/orderinglist.py
test/ext/selectresults.py
test/ext/wsgi_test.py [deleted file]
test/orm/association.py
test/orm/cascade.py
test/orm/compile.py
test/orm/cycles.py
test/orm/eagertest1.py
test/orm/eagertest2.py
test/orm/eagertest3.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/lazytest1.py
test/orm/manytomany.py
test/orm/memusage.py
test/orm/merge.py
test/orm/onetoone.py
test/orm/query.py
test/orm/relationships.py
test/orm/sessioncontext.py
test/orm/unitofwork.py
test/perf/cascade_speed.py
test/perf/masseagerload.py
test/perf/massload.py
test/perf/massload2.py
test/perf/masssave.py
test/perf/poolload.py
test/perf/threaded_compile.py
test/perf/wsgi.py
test/sql/case_statement.py
test/sql/constraints.py
test/sql/defaults.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/tables.py
test/testbase.py
test/zblog/tables.py