Changeset 464
- Timestamp:
- 09/24/09 17:14:45 (4 years ago)
- Files:
-
- 1 modified
-
elixir/trunk/tests/test_m2m.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
elixir/trunk/tests/test_m2m.py
r458 r464 10 10 class TestManyToMany(object): 11 11 def setup(self): 12 metadata.bind = 'sqlite:// /'12 metadata.bind = 'sqlite://' 13 13 14 14 def teardown(self): … … 100 100 assert 'as__id' in m2m_cols 101 101 assert 'inverse_id' in m2m_cols 102 103 #TODO: add an upgrade test 104 #def test_upgrade(self): 105 # elixir.options.M2MCOL_NAMEFORMAT = elixir.options.OLD_M2MCOL_NAMEFORMAT 106 # elixir.options.MIGRATION_TO_07_AID = True 107 # metadata.bind = 'sqlite://' 108 # elixir.options.M2MCOL_NAMEFORMAT = elixir.options.NEW_M2MCOL_NAMEFORMAT # assert False 102 109 103 110 def test_manual_column_format(self):
