(self)
| 20 | ) |
| 21 | |
| 22 | def test_msg_structure_fail(self): |
| 23 | self.assertNotEqual( |
| 24 | msg_structure("failed", "Hello again"), |
| 25 | { |
| 26 | "status": "ok", |
| 27 | "msg": "Hello again" |
| 28 | } |
| 29 | ) |
| 30 | |
| 31 | def test_fix_skip_pass(self): |
| 32 | returned_values = fix_skip('0') |
nothing calls this directly
no test coverage detected