Merge "Get rid of the <MagicMock> output when the tests run"
This commit is contained in:
commit
184244eb4a
@ -26,7 +26,7 @@ class CommandsTestCase(TestCase):
|
|||||||
def test_startdash_usage_empty(self):
|
def test_startdash_usage_empty(self):
|
||||||
self.assertRaises(CommandError, call_command, 'startdash')
|
self.assertRaises(CommandError, call_command, 'startdash')
|
||||||
|
|
||||||
@mock.patch.object(startdash.Command, 'handle')
|
@mock.patch.object(startdash.Command, 'handle', return_value='')
|
||||||
def test_startdash_usage_correct(self, handle):
|
def test_startdash_usage_correct(self, handle):
|
||||||
call_command('startdash', 'test_dash')
|
call_command('startdash', 'test_dash')
|
||||||
|
|
||||||
@ -40,7 +40,7 @@ class CommandsTestCase(TestCase):
|
|||||||
def test_startpanel_usage_empty(self):
|
def test_startpanel_usage_empty(self):
|
||||||
self.assertRaises(CommandError, call_command, 'startpanel')
|
self.assertRaises(CommandError, call_command, 'startpanel')
|
||||||
|
|
||||||
@mock.patch.object(startpanel.Command, 'handle')
|
@mock.patch.object(startpanel.Command, 'handle', return_value='')
|
||||||
def test_startpanel_usage_correct(self, handle):
|
def test_startpanel_usage_correct(self, handle):
|
||||||
call_command('startpanel', 'test_dash', '--dashboard=foo.bar')
|
call_command('startpanel', 'test_dash', '--dashboard=foo.bar')
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user