(label: &str)
| 387 | } |
| 388 | |
| 389 | fn installed_arguments_for_label(label: &str) -> anyhow::Result<Option<Vec<String>>> { |
| 390 | installed_arguments_from_plist(&plist_path_for_label(label)?) |
| 391 | } |
| 392 | |
| 393 | fn installed_arguments_from_plist(plist_path: &Path) -> anyhow::Result<Option<Vec<String>>> { |
| 394 | if !plist_path.exists() { |
no test coverage detected