Added assertions for an empty stdout to CoreCommandsNoOutputTests.

This commit is contained in:
Jon Dufresne 2020-04-20 02:32:03 -07:00 committed by GitHub
parent 7b4bd2a82c
commit 3152146e3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -8,11 +8,15 @@ class CoreCommandsNoOutputTests(TestCase):
available_apps = ['empty_models']
def test_sqlflush_no_tables(self):
out = io.StringIO()
err = io.StringIO()
call_command('sqlflush', stderr=err)
call_command('sqlflush', stdout=out, stderr=err)
self.assertEqual(out.getvalue(), '')
self.assertEqual(err.getvalue(), 'No tables found.\n')
def test_sqlsequencereset_no_sequences(self):
out = io.StringIO()
err = io.StringIO()
call_command('sqlsequencereset', 'empty_models', stderr=err)
call_command('sqlsequencereset', 'empty_models', stdout=out, stderr=err)
self.assertEqual(out.getvalue(), '')
self.assertEqual(err.getvalue(), 'No sequences found.\n')