coursera-dl/coursera/test/utils.py

10 lines
239 B
Python
Vendored

"""
Helper functions that are only used in tests.
"""
import os
from io import open
def slurp_fixture(path):
return open(os.path.join(os.path.dirname(__file__),
"fixtures", path), encoding='utf8').read()