Skip to content

Commit

Permalink
add dummy docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
harisang committed May 17, 2023
1 parent baa9451 commit 2d22de2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"""
To be completed
"""
from typing import List, Tuple, Dict, Any
from src.monitoring_tests.template_test import TemplateTest
from src.helper_functions import (
Expand All @@ -9,6 +12,9 @@
# this class implements the EBBO test based solely on the competition endpoint.
# the way to run the test is by calling the cow_endpoint_test() method
class EndpointTest(TemplateTest):
"""
To be completed
"""
@classmethod
def compare_orders_surplus(cls, competition_data: Dict[str, Any]) -> None:
"""
Expand Down
7 changes: 6 additions & 1 deletion src/monitoring_tests/template_test.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"""
To be completed
"""
import json
from typing import List, Dict, Any
from fractions import Fraction
Expand All @@ -21,7 +24,9 @@
# multiple tests might find useful. The intended usage is that every new test
# is a subclass of this class.
class TemplateTest:

"""
To be completed
"""
load_dotenv()

###### class variables
Expand Down

0 comments on commit 2d22de2

Please sign in to comment.