(self)
| 876 | assert not self.ts.failed() |
| 877 | |
| 878 | def test_maybe_throw(self): |
| 879 | self.ts.results = [Mock(name='r1')] |
| 880 | self.ts.maybe_throw() |
| 881 | self.ts.results[0].maybe_throw.assert_called_with( |
| 882 | callback=None, propagate=True, |
| 883 | ) |
| 884 | |
| 885 | def test_join__on_message(self): |
| 886 | with pytest.raises(ImproperlyConfigured): |
nothing calls this directly
no test coverage detected