Fix date format in permalink.features.

This commit is contained in:
Parker Moore 2013-08-11 12:40:28 +02:00
parent d4300be758
commit 9e11a7f35f
1 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ Feature: Fancy permalinks
Given I have a _posts directory
And I have the following post:
| title | date | permalink | content |
| Some post | 4/14/2013 | /custom/posts/1 | bla bla |
| Some post | 2013-04-14 | /custom/posts/1 | bla bla |
When I run jekyll
Then the _site directory should exist
And the _site/custom/posts/1 directory should exist
@ -78,7 +78,7 @@ Feature: Fancy permalinks
Given I have a _posts directory
And I have the following post:
| title | date | permalink | content |
| Some post | 4/14/2013 | /custom/posts/some.html | bla bla |
| Some post | 2013-04-14 | /custom/posts/some.html | bla bla |
When I run jekyll
Then the _site directory should exist
And the _site/custom/posts directory should exist