summaryrefslogtreecommitdiff
path: root/tests/user_commands/tests.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-02-15 09:39:55 -0500
committerTim Graham <timograham@gmail.com>2016-02-15 09:39:55 -0500
commit1ac7fdcd136bbb7ae5476cb54f670be20178c4e2 (patch)
tree165a516fb627ddc418dbc87bbcd5a20fa6a99fdd /tests/user_commands/tests.py
parentb17a9150a0c3a132e82b53755ede62a45f897875 (diff)
Refs #25304 -- Added assertion for Command.requires_migrations_checks default.
Diffstat (limited to 'tests/user_commands/tests.py')
-rw-r--r--tests/user_commands/tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/user_commands/tests.py b/tests/user_commands/tests.py
index 9ce1399040..9c27fb6669 100644
--- a/tests/user_commands/tests.py
+++ b/tests/user_commands/tests.py
@@ -165,6 +165,7 @@ class CommandTests(SimpleTestCase):
def test_check_migrations(self):
requires_migrations_checks = dance.Command.requires_migrations_checks
+ self.assertEqual(requires_migrations_checks, False)
try:
with mock.patch.object(BaseCommand, 'check_migrations') as check_migrations:
management.call_command('dance', verbosity=0)