()
| 71 | |
| 72 | |
| 73 | def 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 | |
| 88 | def test_setting_sub_title(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…