()
| 167 | |
| 168 | #[test] |
| 169 | fn keeps_bullets_for_flat_paths() { |
| 170 | let list = format_compact_path_list(["a.rs", "b.rs"], "- ", ""); |
| 171 | |
| 172 | assert_eq!(list, "- a.rs\n- b.rs"); |
| 173 | } |
| 174 | |
| 175 | #[test] |
| 176 | fn indents_compact_annotated_tree() { |
nothing calls this directly
no test coverage detected