def test_part_1(arguments, output): """Tests part 1 of the code with examples from the assignment. """ # assert part_1.solution(arguments) == output assert part_1.solution(arguments) == output
def test_part_1(problem_input, output): """Tests part 1 of the code with examples from the assignment. """ assert part_1.solution(problem_input) == output
def test_part_1(number_recipes, output): """Tests part 1 of the code with examples from the assignment. """ assert part_1.solution(number_recipes) == output
def test_part_1(serial, output): assert part_1.solution(serial) == output
def test_part_1(players, last_marble, output): """Tests part 1 of the code with examples from the assignment. """ # assert part_1.solution(arguments) == output assert part_1.solution(players, last_marble) == output