-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_aoc202407.py
41 lines (30 loc) · 934 Bytes
/
test_aoc202407.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
"""Tests for AoC 7, 2024: Bridge Repair."""
# Standard library imports
import pathlib
# Third party imports
import aoc202407
import pytest
PUZZLE_DIR = pathlib.Path(__file__).parent
@pytest.fixture
def example1():
puzzle_input = (PUZZLE_DIR / "example1.txt").read_text().rstrip()
return aoc202407.parse_data(puzzle_input)
def test_parse_example1(example1):
"""Test that input is parsed properly."""
assert example1 == [
[190, 10, 19],
[3267, 81, 40, 27],
[83, 17, 5],
[156, 15, 6],
[7290, 6, 8, 6, 15],
[161011, 16, 10, 13],
[192, 17, 8, 14],
[21037, 9, 7, 18, 13],
[292, 11, 6, 16, 20],
]
def test_part1_example1(example1):
"""Test part 1 on example input."""
assert aoc202407.part1(example1) == 3749
def test_part2_example1(example1):
"""Test part 2 on example input."""
assert aoc202407.part2(example1) == 11387