diff options
author | Tim Graham <timograham@gmail.com> | 2014-12-26 13:56:08 -0500 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2015-01-18 15:58:06 -0500 |
commit | 7e8cf74dc74539f40f4cea53c1e8bba82791fcb6 (patch) | |
tree | ed5ab7926f7856804b062b89326e62b8ee15ff94 /tests/admin_scripts/tests.py | |
parent | 9704b0a82e1f1c6ed0118f948a56652594f0a43b (diff) | |
download | django-7e8cf74dc74539f40f4cea53c1e8bba82791fcb6.tar.gz |
Removed support for syncing apps without migrations per deprecation timeline.
Kept support for creating models without migrations when running tests
(especially for Django's test suite).
Diffstat (limited to 'tests/admin_scripts/tests.py')
-rw-r--r-- | tests/admin_scripts/tests.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/admin_scripts/tests.py b/tests/admin_scripts/tests.py index cbe2a5e6e3..c7603e3914 100644 --- a/tests/admin_scripts/tests.py +++ b/tests/admin_scripts/tests.py @@ -319,13 +319,6 @@ class DjangoAdminFullPathDefaultSettings(AdminScriptTestCase): self.assertNoOutput(err) self.assertOutput(out, SYSTEM_CHECK_MSG) - def test_sqlclear_builtin_with_settings(self): - "fulldefault: django-admin builtin commands succeed if a setting file is provided" - args = ['sqlclear', '--settings=test_project.settings', 'complex_app'] - out, err = self.run_django_admin(args) - self.assertNoOutput(err) - self.assertOutput(out, '-- App creates no tables in the database. Nothing to do.') - def test_builtin_with_environment(self): "fulldefault: django-admin builtin commands succeed if the environment contains settings" args = ['check', 'admin_scripts'] |