snapshot tests

This commit is contained in:
Will McGugan
2025-03-25 17:02:00 +00:00
parent 068447c1d4
commit 297bc78741
61 changed files with 3500 additions and 3498 deletions

View File

@@ -1,3 +1,5 @@
from rich.text import Text
from textual.app import App, ComposeResult
from textual.containers import Horizontal, VerticalScroll
from textual.widgets import Label, RadioButton, RadioSet
@@ -18,7 +20,9 @@ class RadioSetChangedApp(App[None]):
yield RadioButton("Star Wars: A New Hope")
yield RadioButton("The Last Starfighter")
yield RadioButton(
"Total Recall :backhand_index_pointing_right: :red_circle:"
Text.from_markup(
"Total Recall :backhand_index_pointing_right: :red_circle:"
)
)
yield RadioButton("Wing Commander")
with Horizontal():