You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spiel/tests/transitions/conftest.py

13 lines
180 B
Python

import pytest
from textual.widget import Widget
@pytest.fixture
def from_widget() -> Widget:
return Widget()
@pytest.fixture
def to_widget() -> Widget:
return Widget()