(self)
| 157 | |
| 158 | @pytest.mark.usefixtures('depends_on_current_app') |
| 159 | def test_reduce(self): |
| 160 | x = Signature('TASK', (2, 4), app=self.app) |
| 161 | fun, args = x.__reduce__() |
| 162 | assert fun(*args) == x |
| 163 | |
| 164 | def test_replace(self): |
| 165 | x = Signature('TASK', ('A',), {}) |
nothing calls this directly
no test coverage detected