This repository has been archived on 2022-08-24. You can view files and clone it, but cannot push or open issues or pull requests.
ergast-py/tests/test_ergast_py.py
2022-07-06 22:27:54 +01:00

18 lines
349 B
Python

""" Tests for Ergast Py """
from ergast_py import __version__
class TestErgastPy():
"""
Tests for the Ergast-py package
"""
def test_version(self):
""" Assert the version of the system """
assert __version__ == '0.6.0'
def test_ergast(self):
""" Basic test to check Ergast functions """
pass