MCPcopy
hub / github.com/Textualize/textual / test_setting_title

Function test_setting_title

tests/test_app.py:73–85  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

71
72
73def test_setting_title():
74 app = MyApp()
75 app.title = None
76 assert app.title == "None"
77
78 app.title = ""
79 assert app.title == ""
80
81 app.title = 0.125
82 assert app.title == "0.125"
83
84 app.title = [True, False, 2]
85 assert app.title == "[True, False, 2]"
86
87
88def test_setting_sub_title():

Callers

nothing calls this directly

Calls 1

MyAppClass · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…