()
| 60 | |
| 61 | |
| 62 | def test_safe_join_os_sep(): |
| 63 | import werkzeug.security as sec |
| 64 | |
| 65 | prev_value = sec._os_alt_seps |
| 66 | sec._os_alt_seps = "*" |
| 67 | assert safe_join("foo", "bar/baz*") is None |
| 68 | sec._os_alt_steps = prev_value |
| 69 | |
| 70 | |
| 71 | def test_safe_join_empty_trusted(): |
nothing calls this directly
no test coverage detected