()
| 837 | |
| 838 | #[test] |
| 839 | fn test_file_ops_delete() { |
| 840 | let ops = FileOps::delete(test_trunk_id(), "old.txt".to_string()); |
| 841 | |
| 842 | assert!(ops.is_delete()); |
| 843 | assert!(!ops.is_create()); |
| 844 | assert_eq!(ops.path(), "old.txt"); |
| 845 | } |
| 846 | |
| 847 | #[test] |
| 848 | fn test_file_ops_move() { |
nothing calls this directly
no test coverage detected