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-06-12 11:22:04 +01:00

23 lines
478 B
Python

import ergast_py
class TestErgast():
"""
Tests for the Ergast class
"""
e = ergast_py.Ergast()
def test_filters_add(self):
# Test that when I add all the filters the params has them all
pass
def test_paging(self):
# Test that paging works when querying large data amounts
pass
def test_reset(self):
# Test that when I've run a query the params are reset
pass
def test_full(self):
pass