From c723a1ff8e76aaef227d5af7a57006cc9bfd2fc8 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Tue, 19 Jun 2018 09:35:55 +0200 Subject: Fixed #29506 -- Added validation for migrate's app_label option. Thanks MyungSeKyo for the report and the initial patch. --- tests/migrations/test_commands.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tests') diff --git a/tests/migrations/test_commands.py b/tests/migrations/test_commands.py index c9791af51e..494d5cd211 100644 --- a/tests/migrations/test_commands.py +++ b/tests/migrations/test_commands.py @@ -1425,3 +1425,11 @@ class AppLabelErrorTests(TestCase): with self.assertRaises(SystemExit): call_command('makemigrations', 'django.contrib.auth', stderr=err) self.assertIn(self.did_you_mean_auth_error, err.getvalue()) + + def test_migrate_nonexistent_app_label(self): + with self.assertRaisesMessage(CommandError, self.nonexistent_app_error): + call_command('migrate', 'nonexistent_app') + + def test_migrate_app_name_specified_as_label(self): + with self.assertRaisesMessage(CommandError, self.did_you_mean_auth_error): + call_command('migrate', 'django.contrib.auth') -- cgit v1.3