From a42df44513b15a4d90b0c48afe5c8bddbac30cd2 Mon Sep 17 00:00:00 2001 From: Pat Hawks Date: Tue, 2 Feb 2016 20:02:08 -0800 Subject: [PATCH] Update tests to work with Jekyll 3 --- spec/spec_helper.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index c6c2a77..a391dd0 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -26,8 +26,10 @@ def page(options={}) end def post(options={}) - page = Jekyll::Post.new site, CONFIG_DEFAULTS["source"], "", "2015-01-01-post.md" - page.data = options + filename = File.expand_path("2015-01-01-post.md", CONFIG_DEFAULTS["source"]) + config = { :site => site, :collection => site.collections["posts"] } + page = Jekyll::Document.new filename, config + page.merge_data!(options) page end