(empty_environ)
| 76 | |
| 77 | |
| 78 | def test_pathname_prefix_from_environ_app_name(empty_environ): |
| 79 | os.environ["DASH_APP_NAME"] = "my-dash-app" |
| 80 | _, routes, req = pathname_configs() |
| 81 | assert req == "/my-dash-app/" |
| 82 | assert routes == "/" |
| 83 | |
| 84 | |
| 85 | def test_pathname_prefix_environ_routes(empty_environ): |
nothing calls this directly
no test coverage detected
searching dependent graphs…