diff --git a/tests/test_simple_35.py b/tests/test_simple_35.py index 1e4d697c..cedc6aa5 100644 --- a/tests/test_simple_35.py +++ b/tests/test_simple_35.py @@ -72,6 +72,10 @@ async def run_test(): event_loop.stop() event_loop.close() +@pytest.mark.asyncio +def test_non_corutine_marked(): + """Tests that marked non-coroutines function normally (Issue #109)""" + assert True class Test: """Test that asyncio marked functions work in test methods."""