features/permalinks.feature in jekyll-1.0.2 vs features/permalinks.feature in jekyll-1.0.3

- old
+ new

@@ -5,21 +5,21 @@ Scenario: Use none permalink schema Given I have a _posts directory And I have the following post: | title | date | content | - | None Permalink Schema | 3/27/2009 | Totally nothing. | + | None Permalink Schema | 2009-03-27 | Totally nothing. | And I have a configuration file with "permalink" set to "none" When I run jekyll Then the _site directory should exist And I should see "Totally nothing." in "_site/none-permalink-schema.html" Scenario: Use pretty permalink schema Given I have a _posts directory And I have the following post: | title | date | content | - | Pretty Permalink Schema | 3/27/2009 | Totally wordpress. | + | Pretty Permalink Schema | 2009-03-27 | Totally wordpress. | And I have a configuration file with "permalink" set to "pretty" When I run jekyll Then the _site directory should exist And I should see "Totally wordpress." in "_site/2009/03/27/pretty-permalink-schema/index.html" @@ -36,30 +36,30 @@ Scenario: Use custom permalink schema with prefix Given I have a _posts directory And I have the following post: | title | category | date | content | - | Custom Permalink Schema | stuff | 3/27/2009 | Totally custom. | + | Custom Permalink Schema | stuff | 2009-03-27 | Totally custom. | And I have a configuration file with "permalink" set to "/blog/:year/:month/:day/:title" When I run jekyll Then the _site directory should exist And I should see "Totally custom." in "_site/blog/2009/03/27/custom-permalink-schema/index.html" Scenario: Use custom permalink schema with category Given I have a _posts directory And I have the following post: | title | category | date | content | - | Custom Permalink Schema | stuff | 3/27/2009 | Totally custom. | + | Custom Permalink Schema | stuff | 2009-03-27 | Totally custom. | And I have a configuration file with "permalink" set to "/:categories/:title.html" When I run jekyll Then the _site directory should exist And I should see "Totally custom." in "_site/stuff/custom-permalink-schema.html" Scenario: Use custom permalink schema with squished date Given I have a _posts directory And I have the following post: | title | category | date | content | - | Custom Permalink Schema | stuff | 3/27/2009 | Totally custom. | + | Custom Permalink Schema | stuff | 2009-03-27 | Totally custom. | And I have a configuration file with "permalink" set to "/:month-:day-:year/:title.html" When I run jekyll Then the _site directory should exist And I should see "Totally custom." in "_site/03-27-2009/custom-permalink-schema.html"