1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Completed long overdue sqlinitialdata deprecation.

This commit is contained in:
Ramiro Morales
2014-05-11 23:15:59 -03:00
parent c1b412ebd6
commit a9b7f31bfc
3 changed files with 1 additions and 12 deletions

View File

@@ -66,7 +66,7 @@ class BashCompletionTests(unittest.TestCase):
"Subcommands can be autocompleted"
self._user_input('django-admin.py sql')
output = self._run_autocomplete()
self.assertEqual(output, ['sql sqlall sqlclear sqlcustom sqldropindexes sqlflush sqlindexes sqlinitialdata sqlmigrate sqlsequencereset'])
self.assertEqual(output, ['sql sqlall sqlclear sqlcustom sqldropindexes sqlflush sqlindexes sqlmigrate sqlsequencereset'])
def test_help(self):
"No errors, just an empty list if there are no autocomplete options"