(self)
| 23 | # request.call() |
| 24 | |
| 25 | def test_api_wrong_request(self): |
| 26 | request = ApiWrapper(get_fake_conf()).create_request() |
| 27 | with self.assertRaises(AttributeError): |
| 28 | request.wrong_request() |
| 29 | |
| 30 | def test_raises_no_player_position_set_exception(self): |
| 31 | request = ApiWrapper(get_fake_conf()).create_request() |
nothing calls this directly
no test coverage detected