Changeset 7951 for django/branches/newforms-admin/tests/modeltests
- Timestamp:
- 07/18/08 14:00:37 (6 months ago)
- Files:
-
- django/branches/newforms-admin (modified) (1 prop)
- django/branches/newforms-admin/tests/modeltests/fixtures/models.py (modified) (1 diff)
- django/branches/newforms-admin/tests/modeltests/lookup/models.py (modified) (1 diff)
- django/branches/newforms-admin/tests/modeltests/transactions/models.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/newforms-admin
- Property svnmerge-integrated changed from /django/trunk:1-4345,4350-4357,4359-4365,4371-4372,4374-4377,4380-4386,4388,4390-4391,4400-4402,4404-4408,4410,4412-4419,4426-4427,4430-4432,4434,4441,4443-4444,4446-4447,4450,4452-4453,4455-4458,4476,4503,4546,4564-4569,4580-4586,4617,4630,4641-6390,6392-7947 to /django/trunk:1-4345,4350-4357,4359-4365,4371-4372,4374-4377,4380-4386,4388,4390-4391,4400-4402,4404-4408,4410,4412-4419,4426-4427,4430-4432,4434,4441,4443-4444,4446-4447,4450,4452-4453,4455-4458,4476,4503,4546,4564-4569,4580-4586,4617,4630,4641-6390,6392-7950
django/branches/newforms-admin/tests/modeltests/fixtures/models.py
r6371 r7951 59 59 # Database flushing does not work on MySQL with the default storage engine 60 60 # because it requires transaction support. 61 if settings.DATABASE_ENGINE not in ('mysql', 'mysql_old'):61 if settings.DATABASE_ENGINE != 'mysql': 62 62 __test__['API_TESTS'] += \ 63 63 """ django/branches/newforms-admin/tests/modeltests/lookup/models.py
r7479 r7951 381 381 382 382 383 if settings.DATABASE_ENGINE not in ('mysql', 'mysql_old'):383 if settings.DATABASE_ENGINE != 'mysql': 384 384 __test__['API_TESTS'] += r""" 385 385 # grouping and backreferences django/branches/newforms-admin/tests/modeltests/transactions/models.py
r7479 r7951 26 26 building_docs = getattr(settings, 'BUILDING_DOCS', False) 27 27 28 if building_docs or settings.DATABASE_ENGINE not in ('mysql', 'mysql_old'):28 if building_docs or settings.DATABASE_ENGINE != 'mysql': 29 29 __test__['API_TESTS'] += """ 30 30 # the default behavior is to autocommit after each save() action
