summaryrefslogtreecommitdiff
path: root/tests/empty_models
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2020-04-20 02:32:03 -0700
committerGitHub <noreply@github.com>2020-04-20 11:32:03 +0200
commit3152146e3abd029be2457d2e780599d399db0fe2 (patch)
tree5ce84fda4ace7ccd924eac1a0a1689a5369f3610 /tests/empty_models
parent7b4bd2a82c4709a9078fed5c33fa94f208a8c41e (diff)
Added assertions for an empty stdout to CoreCommandsNoOutputTests.
Diffstat (limited to 'tests/empty_models')
-rw-r--r--tests/empty_models/test_commands.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/empty_models/test_commands.py b/tests/empty_models/test_commands.py
index 5dd4744033..c5ea6a23b5 100644
--- a/tests/empty_models/test_commands.py
+++ b/tests/empty_models/test_commands.py
@@ -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')