Removed FastCGI support per deprecation timeline; refs #20766.

This commit is contained in:
Tim Graham 2014-11-19 12:21:49 -05:00
parent 37b7776a01
commit 41f0d3d3bc
18 changed files with 13 additions and 883 deletions

View file

@ -93,12 +93,6 @@ class BashCompletionTests(unittest.TestCase):
output = self._run_autocomplete()
self.assertEqual(output, [''])
def test_runfcgi(self):
"Command arguments will be autocompleted"
self._user_input('django-admin runfcgi h')
output = self._run_autocomplete()
self.assertEqual(output, ['host='])
def test_app_completion(self):
"Application names will be autocompleted for an AppCommand"
self._user_input('django-admin sqlmigrate a')