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
2022-07-06 20:30:23 +01:00

27 lines
547 B
Python

""" Tests for the Ergast class """
import ergast_py
class TestErgast():
"""
Tests for the Ergast class
"""
e = ergast_py.Ergast()
def test_filters_add(self):
""" Assert adding filters adds them to the Ergast class """
pass
def test_paging(self):
""" Assert that paging changes the results pages """
pass
def test_reset(self):
""" Assert the function resetting works """
pass
def test_full(self):
""" Assert the full Ergast class works """
pass