Initial
This commit is contained in:
commit
a355de5d8b
24 changed files with 1133 additions and 0 deletions
17
advent/days/day__/test_solution.py
Normal file
17
advent/days/day__/test_solution.py
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
from advent.common import utils
|
||||
|
||||
from .solution import day_num, part1, part2
|
||||
|
||||
|
||||
def test_part1():
|
||||
data = utils.read_data(day_num, '')
|
||||
expected = None
|
||||
result = part1(data)
|
||||
assert result == expected
|
||||
|
||||
|
||||
def test_part2():
|
||||
data = utils.read_data(day_num, '')
|
||||
expected = None
|
||||
result = part2(data)
|
||||
assert result == expected
|
||||
Loading…
Add table
Add a link
Reference in a new issue