Some housekeeping
[redakcja.git] / src / catalogue / test_utils.py
1 # This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
3 #
4 """Testing utilities."""
5
6 from os.path import abspath, dirname, join
7
8
9 def get_fixture(path):
10     f_path = join(dirname(abspath(__file__)), 'tests/files', path)
11     with open(f_path) as f:
12         return f.read()