(self)
| 242 | self.app.amqp.as_task_v2(uuid(), 'foo', args='abc') |
| 243 | |
| 244 | def test_countdown_negative(self): |
| 245 | with pytest.raises(ValueError): |
| 246 | self.app.amqp.as_task_v2(uuid(), 'foo', countdown=-1232132323123) |
| 247 | |
| 248 | def test_Queues__with_max_priority(self): |
| 249 | x = self.app.amqp.Queues({}, max_priority=23) |
nothing calls this directly
no test coverage detected