You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
breadability/tests/utils.py

15 lines
376 B
Python

from os import path
TEST_DIR = path.dirname(__file__)
def load_snippet(filename):
"""Helper to fetch in the content of a test snippet"""
return open(path.join(TEST_DIR, 'test_snippets', filename)).read()
def load_article(filename):
"""Helper to fetch in the content of a test article"""
return open(path.join(TEST_DIR, 'test_articles', filename)).read()