summaryrefslogtreecommitdiff
path: root/src/mailman/database/tests/test_migrations.py
diff options
context:
space:
mode:
authorBarry Warsaw2012-12-30 11:59:05 -0500
committerBarry Warsaw2012-12-30 11:59:05 -0500
commitfc662999d425e9347f59f676861ee44ad81c2623 (patch)
treea6ba8fceb36aecc6fb2b66c5b946589b188057a2 /src/mailman/database/tests/test_migrations.py
parent08c8644c4bcd067f1501829a39ee9f06d116abf3 (diff)
downloadmailman-fc662999d425e9347f59f676861ee44ad81c2623.tar.gz
mailman-fc662999d425e9347f59f676861ee44ad81c2623.tar.zst
mailman-fc662999d425e9347f59f676861ee44ad81c2623.zip
Diffstat (limited to 'src/mailman/database/tests/test_migrations.py')
-rw-r--r--src/mailman/database/tests/test_migrations.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mailman/database/tests/test_migrations.py b/src/mailman/database/tests/test_migrations.py
index 6d27f01f0..f47ad6d3c 100644
--- a/src/mailman/database/tests/test_migrations.py
+++ b/src/mailman/database/tests/test_migrations.py
@@ -375,6 +375,10 @@ class TestMigration20121015Schema(MigrationTestBase):
['20121014999999'],
('list_id',),
('mailing_list',))
+ self._missing_present('mailinglist',
+ ['20121014999999'],
+ (),
+ ('new_member_options',))
def test_post_upgrade_column_migrations(self):
self._missing_present('ban',
@@ -382,6 +386,11 @@ class TestMigration20121015Schema(MigrationTestBase):
'20121015000000'],
('mailing_list',),
('list_id',))
+ self._missing_present('mailinglist',
+ ['20121014999999',
+ '20121015000000'],
+ ('new_member_options',),
+ ())