1
0
Fork 0

formatting and cosmetic updates to 2020.

This commit is contained in:
Gabe Venberg 2026-04-17 16:21:34 +02:00
parent 84c4cf9991
commit cd75e58f77
28 changed files with 320 additions and 287 deletions

View file

0
2020/template/input.txt Normal file
View file

View file

@ -2,9 +2,6 @@
import pathlib
import sys
import re
from dataclasses import dataclass
from pprint import pprint
def parse(puzzle_input: str):
"""Parse input"""

View file

@ -2,32 +2,27 @@
import pathlib
import pytest
import template as aoc
import temp as aoc
PUZZLE_DIR = pathlib.Path(__file__).parent
#these test fixtures setup the test, mainly by reading the filename into a string in this simple case.
@pytest.fixture
def example1():
puzzle_input = (PUZZLE_DIR / "example1").read_text().strip()
return aoc.parse(puzzle_input)
@pytest.fixture
def example2():
puzzle_input = (PUZZLE_DIR / "example2").read_text().strip()
def example():
puzzle_input = (PUZZLE_DIR / "example.txt").read_text().strip()
return aoc.parse(puzzle_input)
@pytest.mark.skip(reason="Not implemented")
def test_parse_example1(example1):
def test_parse_example(example):
"""Test that input is parsed properly"""
assert example1 == ...
assert example == ...
@pytest.mark.skip(reason="Not implemented")
def test_part1_example1(example1):
def test_part1_example(example):
"""Test part 1 on example input"""
assert aoc.part1(example1) == ...
assert aoc.part1(example) == ...
@pytest.mark.skip(reason="Not implemented")
def test_part2_example2(example2):
def test_part2_example(example):
"""Test part 2 on example input"""
assert aoc.part2(example2) == ...
assert aoc.part2(example) == ...