diff options
| author | Daniel Schadt <kingdread@gmx.de> | 2022-07-17 21:01:41 +0200 | 
|---|---|---|
| committer | Daniel Schadt <kingdread@gmx.de> | 2022-07-17 21:01:41 +0200 | 
| commit | 333a06478b40d2e1b0f2243745807c745005233a (patch) | |
| tree | 85de8e610c32876b7e7cff487506526ead2a7992 /tests/testutils.py | |
| parent | a07ca7c0b7e567f2647d13f84db6aed201cde56c (diff) | |
| parent | 69c9167911a8449fef20951abe924a1c4528545c (diff) | |
| download | fietsboek-333a06478b40d2e1b0f2243745807c745005233a.tar.gz fietsboek-333a06478b40d2e1b0f2243745807c745005233a.tar.bz2 fietsboek-333a06478b40d2e1b0f2243745807c745005233a.zip | |
Merge branch 'multi-download'
Diffstat (limited to 'tests/testutils.py')
| -rw-r--r-- | tests/testutils.py | 20 | 
1 files changed, 20 insertions, 0 deletions
| diff --git a/tests/testutils.py b/tests/testutils.py new file mode 100644 index 0000000..3ddbdbe --- /dev/null +++ b/tests/testutils.py @@ -0,0 +1,20 @@ +"""Various utility functions for testing.""" +import gzip +from pathlib import Path + + +def load_gpx_asset(filename): +    """Load a GPX test asset. + +    This looks in the tests/assets/ folder, reads and unzips the file and +    returns its contents. + +    :param filename: Name of the asset to load. +    :type filename: str +    :return: The content of the asset as bytes. +    :rtype: bytes +    """ +    asset_dir = Path(__file__).parent / 'assets' +    test_file = asset_dir / filename +    with gzip.open(test_file, 'rb') as fobj: +        return fobj.read() | 
