From 836bb97a586b0d5bbfaa2da72659731bc0dff94d Mon Sep 17 00:00:00 2001 From: mraniki Date: Tue, 25 Jul 2023 21:44:51 +0200 Subject: [PATCH] :white_check_mark: increase test coverage --- tests/test_unit.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/test_unit.py b/tests/test_unit.py index a5a525b..d7481c4 100644 --- a/tests/test_unit.py +++ b/tests/test_unit.py @@ -186,12 +186,19 @@ async def test_short_valid_get_order(fmo, short_order, result_order): @pytest.mark.asyncio -async def test_ignore_eorder(fmo, ignore_order): +async def test_ignore_order(fmo, ignore_order): """ignore order Testing""" result = await fmo.get_order(ignore_order) assert result is None +@pytest.mark.asyncio +async def test_invalid_get_order(fmo, invalid_order): + """ignore order Testing""" + result = await fmo.get_order(invalid_order) + assert result is None + + @pytest.mark.asyncio async def test_mapping_order( fmo,