(dash_duo)
| 159 | |
| 160 | |
| 161 | def test_rdps003_memory_reload(dash_duo): |
| 162 | app = reloadable_app(persistence_type="memory") |
| 163 | dash_duo.start_server(app) |
| 164 | check_table_names(dash_duo, ["a", "b"]) |
| 165 | rename_and_hide(dash_duo) |
| 166 | check_table_names(dash_duo, [NEW_NAME]) |
| 167 | |
| 168 | dash_duo.wait_for_page() |
| 169 | # no persistence after reload with persistence_type=memory |
| 170 | check_table_names(dash_duo, ["a", "b"]) |
| 171 | |
| 172 | |
| 173 | def test_rdps004_show_hide(dash_duo): |
nothing calls this directly
no test coverage detected
searching dependent graphs…