1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-22 21:03:41 +00:00
scrapy/tests/test_utils_asyncio.py
2019-12-26 20:46:54 +05:00

18 lines
536 B
Python

from unittest import TestCase
from pytest import mark
from scrapy.utils.asyncio import is_asyncio_reactor_installed, install_asyncio_reactor
@mark.usefixtures('reactor_pytest')
class AsyncioTest(TestCase):
def test_is_asyncio_reactor_installed(self):
# the result should depend only on the pytest --reactor argument
self.assertEqual(is_asyncio_reactor_installed(), self.reactor_pytest == 'asyncio')
def test_install_asyncio_reactor(self):
# this should do nothing
install_asyncio_reactor()