()
| 951 | |
| 952 | #[test] |
| 953 | fn test_merge_no_markers() { |
| 954 | let existing = "# Just a file\n"; |
| 955 | let new_items = HashMap::new(); |
| 956 | let result = merge_items_into_section(existing, &new_items); |
| 957 | assert_eq!(result, existing); |
| 958 | } |
| 959 | |
| 960 | #[test] |
| 961 | fn test_merge_both_existing_and_new() { |
nothing calls this directly
no test coverage detected