(self)
| 60 | self.assertEqual(e.exception.code, 2) |
| 61 | |
| 62 | def test_main_unknown_adv_format(self): |
| 63 | string_list = '--unknown'.split() |
| 64 | with self.assertRaises(SystemExit) as e: |
| 65 | main.main(string_list) |
| 66 | self.assertEqual(e.exception.code, 2) |
| 67 | |
| 68 | def test_main_filter_forbidden_by_api(self): |
| 69 | se = '2017-06-20', '2017-06-21' |
nothing calls this directly
no outgoing calls
no test coverage detected