This commit is contained in:
Vincent Prouillet 2017-05-11 15:45:19 +09:00
parent 18ccb4b79e
commit 939b699518
2 changed files with 2 additions and 2 deletions

View file

@ -558,7 +558,7 @@ impl Site {
let pages = self.pages.values()
.filter(|p| p.meta.date.is_some())
.take(15) // limit to the last 15 elements
.map(|p| p.clone())
.cloned()
.collect::<Vec<Page>>();
// Don't generate a RSS feed if none of the pages has a date

View file

@ -266,7 +266,7 @@ fn test_page_with_assets_gets_right_parent_path() {
File::create(nested_path.join("fail.png")).unwrap();
let res = Page::parse(
&nested_path.join("index.md").as_path(),
nested_path.join("index.md").as_path(),
"+++\nurl=\"hey\"+++\n",
&Config::default()
);