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

18 lines
349 B
Python
Raw Permalink Normal View History

2022-07-06 20:30:23 +01:00
""" Tests for Ergast Py """
2022-06-01 14:31:52 +01:00
from ergast_py import __version__
2022-06-01 18:31:06 +01:00
class TestErgastPy():
"""
Tests for the Ergast-py package
"""
def test_version(self):
2022-07-06 20:30:23 +01:00
""" Assert the version of the system """
2022-07-06 22:27:54 +01:00
assert __version__ == '0.6.0'
2022-07-06 20:30:23 +01:00
def test_ergast(self):
""" Basic test to check Ergast functions """
pass