From 1a6f238012b349d859670f25dcb1b8cdd59f9c94 Mon Sep 17 00:00:00 2001 From: Samuel Roach Date: Sun, 12 Jun 2022 11:22:04 +0100 Subject: [PATCH] Added function definition for ergast tests --- tests/test_ergast.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/tests/test_ergast.py b/tests/test_ergast.py index f8968fd..d3995d5 100644 --- a/tests/test_ergast.py +++ b/tests/test_ergast.py @@ -5,4 +5,19 @@ class TestErgast(): Tests for the Ergast class """ - e = ergast_py.Ergast() \ No newline at end of file + 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 \ No newline at end of file