(app)
| 100 | |
| 101 | |
| 102 | def test_path_is_url(app): |
| 103 | eb = EnvironBuilder(app, "https://example.com/") |
| 104 | assert eb.url_scheme == "https" |
| 105 | assert eb.host == "example.com" |
| 106 | assert eb.script_root == "" |
| 107 | assert eb.path == "/" |
| 108 | |
| 109 | |
| 110 | def test_environbuilder_json_dumps(app): |
nothing calls this directly
no test coverage detected