(name)
| 167 | |
| 168 | @pytest.mark.parametrize("name", ["", " ", "!", "-", "---"]) |
| 169 | def test_name_no_alphanumeric(name): |
| 170 | with pytest.raises(ValueError, match=f"Name '{name}' contains no alphanumeric characters"): |
| 171 | get_bundle_app_name({}, name) |
| 172 | |
| 173 | |
| 174 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected