Currently asyncio doesn't support test methods (see #4): ``` python class Test: @pytest.mark.asyncio def test_some_asyncio_code(self): res = yield from library.do_something() assert b'expected result' == res ```