Added integration testing.

This commit is contained in:
2022-06-03 11:52:18 -04:00
parent 015edc13c1
commit a9b1920c2f
11 changed files with 311 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
"""PyTest configuration."""
from pytest import fixture
from .server import Server
from .page import Page
@fixture
def server():
"""Create a server instance."""
serv = Server()
yield serv
serv.destroy()
@fixture
def page():
pg = Page()
return pg