MCPcopy Index your code
hub / github.com/endbasic/endbasic / test_parse_lang_reference_one

Function test_parse_lang_reference_one

std/src/help.rs:667–680  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

665
666 #[test]
667 fn test_parse_lang_reference_one() {
668 let content = parse_lang_reference(
669 "
670
671# First
672
673This is the first and only topic with
674a couple of lines.
675",
676 );
677 let exp_content =
678 vec![("First", "This is the first and only topic with\na couple of lines.")];
679 assert_eq!(exp_content, content);
680 }
681
682 #[test]
683 fn test_parse_lang_reference_many() {

Callers

nothing calls this directly

Calls 1

parse_lang_referenceFunction · 0.85

Tested by

no test coverage detected