def test_should_output_json_in_arguments_returns_true(self): result = _should_output_json([ '--test', '--json' ]) self.assertTrue(result)
def test_should_output_json_in_arguments_returns_false(self): result = _should_output_json([ '--test', ]) self.assertFalse(result)