()
| 779 | |
| 780 | #[test] |
| 781 | fn test_add_directory() { |
| 782 | let wc = Memory::new(); |
| 783 | wc.add_directory("src/utils"); |
| 784 | |
| 785 | assert!(wc.is_directory("src")); |
| 786 | assert!(wc.is_directory("src/utils")); |
| 787 | } |
| 788 | |
| 789 | #[test] |
| 790 | fn test_list_files() { |
nothing calls this directly
no test coverage detected