mirror of
https://github.com/coursera-dl/coursera-dl.git
synced 2026-01-24 03:05:38 +00:00
10 lines
239 B
Python
Vendored
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()
|