()
| 655 | |
| 656 | #[test] |
| 657 | fn test_parse_lang_reference_junk_only() { |
| 658 | let content = parse_lang_reference( |
| 659 | "# foo |
| 660 | # bar |
| 661 | baz", |
| 662 | ); |
| 663 | assert!(content.is_empty()); |
| 664 | } |
| 665 | |
| 666 | #[test] |
| 667 | fn test_parse_lang_reference_one() { |
nothing calls this directly
no test coverage detected