Loading tests/user_commands/tests.py +1 −0 Original line number Diff line number Diff line Loading @@ -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) Loading Loading
tests/user_commands/tests.py +1 −0 Original line number Diff line number Diff line Loading @@ -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) Loading