Archived
1
0
Fork 0
This repository has been archived on 2024-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
hunger/tests/test_parser.py
Lukas Winkler ff9b7687e2 add tests
2017-11-12 20:50:53 +01:00

12 lines
278 B
Python

import yaml
import parser
def test_answer():
with open("../reference.yaml", 'r') as stream:
reference = yaml.load(stream)
for p in [parser.fladerei, parser.zuppa, parser.aai]:
comparison = reference[p.name]
assert comparison == p.get_menus()