summaryrefslogtreecommitdiffstats
path: root/aoc/test_init.py
diff options
context:
space:
mode:
Diffstat (limited to 'aoc/test_init.py')
-rw-r--r--aoc/test_init.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/aoc/test_init.py b/aoc/test_init.py
index a9155cc..f804c41 100644
--- a/aoc/test_init.py
+++ b/aoc/test_init.py
@@ -1,2 +1,6 @@
1# -*- coding: utf-8 -*-
1def test_assignment_examples(assignment): 2def test_assignment_examples(assignment):
2 assert assignment.run(input=assignment.read_input(example=True)) == assignment.example_result 3 assert (
4 assignment.run(input=assignment.read_input(example=True))
5 == assignment.example_result
6 )