(self, chain_type)
| 436 | |
| 437 | @pytest.mark.parametrize("chain_type", [_chain, chain_subclass]) |
| 438 | def test_from_dict_no_tasks(self, chain_type): |
| 439 | assert chain_type.from_dict(dict(chain_type(app=self.app)), app=self.app) |
| 440 | assert isinstance(chain_type.from_dict(dict(chain_type(app=self.app)), app=self.app), chain_type) |
| 441 | |
| 442 | @pytest.mark.parametrize("chain_type", [_chain, chain_subclass]) |
| 443 | def test_from_dict_full_subtasks(self, chain_type): |