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
Beispiel #2
0
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
Beispiel #3
0
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
Beispiel #4
0
def test_part_1(serial, output):
    assert part_1.solution(serial) == output
Beispiel #5
0
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