(rdi, name, bundle_expected, app_name_expected)
| 143 | ], |
| 144 | ) |
| 145 | def test_bundle_app_name(rdi, name, bundle_expected, app_name_expected): |
| 146 | bundle_actual, app_name_actual = get_bundle_app_name({"reverse_domain_identifier": rdi}, name) |
| 147 | assert (bundle_actual, app_name_actual) == (bundle_expected, app_name_expected) |
| 148 | |
| 149 | |
| 150 | @pytest.mark.parametrize("rdi", ["", "org"]) |
nothing calls this directly
no test coverage detected