From 1e15df070181857e7ff079f72e2bce6a977b0d9d Mon Sep 17 00:00:00 2001 From: "maul.esel" Date: Tue, 11 Jun 2013 16:28:50 +0200 Subject: [PATCH] fix cucumber feature to obey new date format --- features/include_tag.feature | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/features/include_tag.feature b/features/include_tag.feature index 9d301fcd..6dc3bf49 100644 --- a/features/include_tag.feature +++ b/features/include_tag.feature @@ -10,13 +10,13 @@ Feature: Include tags And I have an "_includes/ignore.html" file that contains "" And I have a _posts directory And I have the following post: - | title | date | layout | content | - | Include Files | 3/21/2013 | default | {% include header.html param="myparam" %} | - | Ignore params if unused | 3/21/2013 | default | {% include ignore.html date="today" %} | - | List multiple parameters | 3/21/2013 | default | {% include params.html date="today" start="tomorrow" %} | - | Dont keep parameters | 3/21/2013 | default | {% include ignore.html param="test" %}\n{% include header.html %} | - | Allow params with spaces and quotes | 4/07/2013 | default | {% include params.html cool="param with spaces" super="\"quoted\"" %} | - | Parameter syntax | 4/12/2013 | default | {% include params.html param1_or_2="value" %} | + | title | date | layout | content | + | Include Files | 2013-03-21 | default | {% include header.html param="myparam" %} | + | Ignore params if unused | 2013-03-21 | default | {% include ignore.html date="today" %} | + | List multiple parameters | 2013-03-21 | default | {% include params.html date="today" start="tomorrow" %} | + | Dont keep parameters | 2013-03-21 | default | {% include ignore.html param="test" %}\n{% include header.html %} | + | Allow params with spaces and quotes | 2013-04-07 | default | {% include params.html cool="param with spaces" super="\"quoted\"" %} | + | Parameter syntax | 2013-04-12 | default | {% include params.html param1_or_2="value" %} | When I run jekyll Then the _site directory should exist And I should see "
My awesome blog header: myparam
" in "_site/2013/03/21/include-files.html"