view tests/common.py @ 16:4583d0d9331a

stub command line entry for gridding neighbors
author Jeff Hammel <k0scist@gmail.com>
date Sun, 25 Jun 2017 15:03:54 -0700
parents 1b94f3bf97e5
children
line wrap: on
line source

"""
common test functionality
"""

import os

here = os.path.dirname(os.path.abspath(__file__))
data = os.path.join(here, 'data')

def datafile(*path):
    """return path to a test data file"""
    return os.path.join(data, *path)