()
| 724 | |
| 725 | #[test] |
| 726 | fn test_format_code_learning_with_range() { |
| 727 | let learning = CodeLearning::new("f.rs", Some(10), "Issue").with_end_line(20); |
| 728 | assert_eq!(format_code_learning(&learning), "f.rs:10-20 — Issue"); |
| 729 | } |
| 730 | |
| 731 | #[test] |
| 732 | fn test_format_code_learning_full() { |
nothing calls this directly
no test coverage detected