def test_transform_input_bad(self): with pytest.raises(ValueError) as e_info: Thinkcell.transform_input([3, 4])
def test_transform_input(self, test_input, expected): assert Thinkcell.transform_input(test_input) == expected