Skip to content

Commit

Permalink
✅ increase test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
mraniki committed Jul 25, 2023
1 parent 20a2ea9 commit 836bb97
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tests/test_unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 836bb97

Please sign in to comment.