()
| 846 | |
| 847 | #[test] |
| 848 | fn test_file_ops_move() { |
| 849 | let ops = FileOps::move_file( |
| 850 | test_trunk_id(), |
| 851 | "old/path.txt".to_string(), |
| 852 | "new/path.txt".to_string(), |
| 853 | ); |
| 854 | |
| 855 | assert!(ops.is_move()); |
| 856 | assert_eq!(ops.path(), "new/path.txt"); |
| 857 | } |
| 858 | |
| 859 | #[test] |
| 860 | fn test_file_ops_edit() { |
nothing calls this directly
no test coverage detected