From 4147da1317c19fa61d6aa265e8370e63231f9207 Mon Sep 17 00:00:00 2001 From: Tom van der Lee Date: Sun, 19 Nov 2023 16:55:03 +0100 Subject: Initial commit --- aoc/test_init.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 aoc/test_init.py (limited to 'aoc/test_init.py') diff --git a/aoc/test_init.py b/aoc/test_init.py new file mode 100644 index 0000000..e52daf7 --- /dev/null +++ b/aoc/test_init.py @@ -0,0 +1,8 @@ +# -*- coding: utf-8 -*- +def test_assignment_examples(assignment): + assert ( + assignment.run( + input=assignment.read_input(example=True), **assignment.example_kwargs + ) + == assignment.example_result + ) -- cgit v1.2.3