Browse Source

Cleaning up template

pull/5/head
Ryan Reed 3 years ago
parent
commit
5540d273df
1 changed files with 5 additions and 10 deletions
  1. +5
    -10
      puzzles/TEMPLATE_test_dayXX.py

+ 5
- 10
puzzles/TEMPLATE_test_dayXX.py View File

@ -11,12 +11,7 @@ INPUTS_DIR = f"{pathlib.Path(__file__).parent.parent}/inputs"
@pytest.fixture
def example_data1():
input_path = f"{INPUTS_DIR}/dayXX-example1.txt"
return aoc.parse(pathlib.Path(input_path).read_text().strip())
@pytest.fixture
def example_data2():
input_path = f"{INPUTS_DIR}/dayXX-example2.txt"
input_path = f"{INPUTS_DIR}/dayXX-example.txt"
return aoc.parse(pathlib.Path(input_path).read_text().strip())
@ -27,13 +22,13 @@ def dayXX_data():
@pytest.mark.skip(reason="Not implemented")
def test_example1(example_data1):
assert aoc.part1(example_data1) == ...
def test_example1(example_data):
assert aoc.part1(example_data) == ...
@pytest.mark.skip(reason="Not implemented")
def test_example2(example_data2):
assert aoc.part2(example_data2) == ...
def test_example2(example_data):
assert aoc.part2(example_data) == ...
@pytest.mark.skip(reason="Not implemented")


Loading…
Cancel
Save