(self)
| 390 | ) |
| 391 | |
| 392 | def test_pending_configuration__setdefault(self): |
| 393 | with self.Celery(broker='foo://bar') as app: |
| 394 | assert not app.configured |
| 395 | app.conf.setdefault('worker_agent', 'foo:Bar') |
| 396 | assert not app.configured |
| 397 | |
| 398 | def test_pending_configuration__iter(self): |
| 399 | with self.Celery(broker='foo://bar') as app: |
nothing calls this directly
no test coverage detected