summaryrefslogtreecommitdiffstats
path: root/aoc/test_init.py
blob: e52daf7b5d7b92c64ffffc0376c25094714baf8e (plain)
1
2
3
4
5
6
7
8
# -*- coding: utf-8 -*-
def test_assignment_examples(assignment):
    assert (
        assignment.run(
            input=assignment.read_input(example=True), **assignment.example_kwargs
        )
        == assignment.example_result
    )