()
| 650 | |
| 651 | #[test] |
| 652 | fn frontmatter_split_handles_no_frontmatter() { |
| 653 | let (f, b) = split_frontmatter("no frontmatter here"); |
| 654 | assert!(f.is_none()); |
| 655 | assert_eq!(b, "no frontmatter here"); |
| 656 | } |
| 657 | } |
nothing calls this directly
no test coverage detected