()
| 751 | |
| 752 | #[test] |
| 753 | fn test_is_installed_true() { |
| 754 | let dir = tempfile::tempdir().unwrap(); |
| 755 | let hook = make_hook(); |
| 756 | hook.install(dir.path()).unwrap(); |
| 757 | assert!(hook.is_installed(dir.path())); |
| 758 | } |
| 759 | |
| 760 | #[test] |
| 761 | fn test_is_installed_false_no_file() { |