(self)
| 213 | self.add.s(2, 2).set(shadow='fooxyz')).name == 'fooxyz' |
| 214 | |
| 215 | def test_args(self): |
| 216 | args = (2, 2) |
| 217 | assert self.get_request( |
| 218 | self.add.s(*args)).args == args |
| 219 | |
| 220 | def test_kwargs(self): |
| 221 | kwargs = {'1': '2', '3': '4'} |
nothing calls this directly
no test coverage detected