-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_aoc202201.py
37 lines (24 loc) · 879 Bytes
/
test_aoc202201.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
"""Tests for AoC 1, 2022: Calorie Counting."""
# Standard library imports
import pathlib
# Third party imports
import aoc202201
import pytest
PUZZLE_DIR = pathlib.Path(__file__).parent
@pytest.fixture
def example1():
puzzle_input = (PUZZLE_DIR / "example1.txt").read_text().strip()
return aoc202201.parse_data(puzzle_input)
@pytest.fixture
def example2():
puzzle_input = (PUZZLE_DIR / "example2.txt").read_text().strip()
return aoc202201.parse_data(puzzle_input)
def test_parse_example1(example1):
"""Test that input is parsed properly."""
assert example1 == [6_000, 4_000, 11_000, 24_000, 10_000]
def test_part1_example1(example1):
"""Test part 1 on example input."""
assert aoc202201.part1(example1) == 24_000
def test_part2_example1(example1):
"""Test part 2 on example input."""
assert aoc202201.part2(example1) == 45_000