Files
textual/tests/toggles/test_checkbox.py
Dave Pearson cfe7be3abe Some initial Checkbox unit testing
Lots more to come.
2023-02-23 16:46:58 +00:00

40 lines
1.3 KiB
Python

from __future__ import annotations
from textual.app import App, ComposeResult
from textual.widgets import Checkbox
class CheckboxApp(App[None]):
def __init__(self):
super().__init__()
self.events_received = []
def compose(self) -> ComposeResult:
yield Checkbox("Test", id="cb1")
yield Checkbox(id="cb2")
yield Checkbox(value=True, id="cb3")
def on_checkbox_changed(self, event: Checkbox.Changed) -> None:
self.events_received.append((event.input.id, event.input.value))
async def test_checkbox_initial_state() -> None:
"""The initial states of the check boxes should be as we specified."""
async with CheckboxApp().run_test() as pilot:
assert [box.value for box in pilot.app.query(Checkbox)] == [False, False, True]
assert pilot.app.events_received == []
async def test_checkbox_toggle() -> None:
"""The initial states of the check boxes should be as we specified."""
async with CheckboxApp().run_test() as pilot:
for box in pilot.app.query(Checkbox):
box.toggle()
assert [box.value for box in pilot.app.query(Checkbox)] == [True, True, False]
await pilot.pause()
assert pilot.app.events_received == [
("cb1", True),
("cb2", True),
("cb3", False),
]