Changeset 7915
- Timestamp:
- 07/13/08 03:57:30 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/tests/regressiontests/admin_scripts/tests.py
r7888 r7915 802 802 self.assertNoOutput(err) 803 803 self.assertOutput(out, "EXECUTE:AppCommand app=<module 'django.contrib.auth.models'") 804 self.assertOutput(out, os.sep.join(['django','contrib','auth','models.pyc']) + "'>, options=[('pythonpath', None), ('settings', None), ('traceback', None)]") 805 804 self.assertOutput(out, os.sep.join(['django','contrib','auth','models.py'])) 805 self.assertOutput(out, "'>, options=[('pythonpath', None), ('settings', None), ('traceback', None)]") 806 806 807 def test_app_command_no_apps(self): 807 808 "User AppCommands raise an error when no app name is provided" … … 818 819 self.assertOutput(out, os.sep.join(['django','contrib','auth','models.pyc']) + "'>, options=[('pythonpath', None), ('settings', None), ('traceback', None)]") 819 820 self.assertOutput(out, "EXECUTE:AppCommand app=<module 'django.contrib.contenttypes.models'") 820 self.assertOutput(out, os.sep.join(['django','contrib','contenttypes','models.pyc']) + "'>, options=[('pythonpath', None), ('settings', None), ('traceback', None)]") 821 self.assertOutput(out, os.sep.join(['django','contrib','contenttypes','models.py'])) 822 self.assertOutput(out, "'>, options=[('pythonpath', None), ('settings', None), ('traceback', None)]") 821 823 822 824 def test_app_command_invalid_appname(self):
