mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
12 lines
349 B
Python
12 lines
349 B
Python
import pytest
|
|
from support.fixtures import (
|
|
create_frame, create_session, create_window, http, server_config, session,
|
|
url)
|
|
|
|
pytest.fixture()(create_frame)
|
|
pytest.fixture()(create_session)
|
|
pytest.fixture()(create_window)
|
|
pytest.fixture()(http)
|
|
pytest.fixture()(server_config)
|
|
pytest.fixture(scope="function")(session)
|
|
pytest.fixture()(url)
|