(self)
| 234 | class test_AMQP(test_AMQP_Base): |
| 235 | |
| 236 | def test_kwargs_must_be_mapping(self): |
| 237 | with pytest.raises(TypeError): |
| 238 | self.app.amqp.as_task_v2(uuid(), 'foo', kwargs=[1, 2]) |
| 239 | |
| 240 | def test_args_must_be_list(self): |
| 241 | with pytest.raises(TypeError): |
nothing calls this directly
no test coverage detected