(rdi)
| 155 | |
| 156 | @pytest.mark.parametrize("rdi", ["org.", "org.hello.", "org.hello.-"]) |
| 157 | def test_rdi_invalid_package(rdi): |
| 158 | with pytest.raises( |
| 159 | ValueError, |
| 160 | match=( |
| 161 | f"Last component of reverse_domain_identifier '{rdi}' " |
| 162 | f"contains no alphanumeric characters" |
| 163 | ), |
| 164 | ): |
| 165 | get_bundle_app_name({"reverse_domain_identifier": rdi}, "ignored") |
| 166 | |
| 167 | |
| 168 | @pytest.mark.parametrize("name", ["", " ", "!", "-", "---"]) |
nothing calls this directly
no test coverage detected