Add regression test for lazy front-matter matching

This commit is contained in:
Reilly Tucker Siemens 2017-03-26 20:01:32 -07:00
parent 7c1cecb211
commit f0dab659cc
No known key found for this signature in database
GPG key ID: 1B458E7C7CB154A9

View file

@ -184,6 +184,20 @@ date = "2002/10/12"
assert_eq!(front_matter.title, "Title");
}
#[test]
fn test_can_split_content_lazily() {
let content = r#"
+++
title = "Title"
description = "hey there"
date = "2002-10-02T15:00:00Z"
+++
+++"#;
let (front_matter, content) = split_content(Path::new(""), content).unwrap();
assert_eq!(content, "+++");
assert_eq!(front_matter.title, "Title");
}
#[test]
fn test_error_if_cannot_locate_frontmatter() {
let content = r#"