You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
212 B

  1. """
  2. setup the fixtures for our test
  3. """
  4. import pytest
  5. @pytest.fixture()
  6. def server():
  7. """
  8. returns a fresh server instance
  9. """
  10. from src.server import RequestHandler
  11. return RequestHandler