added planned function signatures, docstrings, and corresponding test case

This commit is contained in:
2021-11-21 22:45:13 +01:00
parent 94e34bf388
commit 33e1fca03f
2 changed files with 122 additions and 0 deletions

View File

@ -0,0 +1,34 @@
from unittest import IsolatedAsyncioTestCase
class FunctionsTestCase(IsolatedAsyncioTestCase):
def test_soup_from_url(self):
pass
def test_extract_end_dates(self):
pass
def test_find_relevant_table_rows(self):
pass
def test_convert_number(self):
pass
def test_extract_row_data(self):
pass
def test_extract_all_data(self):
pass
async def test_get_balance_sheet(self):
pass
async def test_get_income_statement(self):
pass
async def test_get_cash_flow_statement(self):
pass
async def test_get_company_financials(self):
pass