diff options
author | Joe Sak <joe@joesak.com> | 2011-03-11 14:23:44 -0600 |
---|---|---|
committer | Joe Sak <joe@joesak.com> | 2011-03-11 14:23:44 -0600 |
commit | 3748c1d9efabde0b62db7b92281c711c6411cfce (patch) | |
tree | 82f494d8cea40c009a70050c1a99491e58385612 /features/tags.feature | |
parent | b3f95341c3b67123084563bd38f9145b8ef4da78 (diff) | |
download | refinerycms-blog-3748c1d9efabde0b62db7b92281c711c6411cfce.tar.gz refinerycms-blog-3748c1d9efabde0b62db7b92281c711c6411cfce.tar.bz2 refinerycms-blog-3748c1d9efabde0b62db7b92281c711c6411cfce.zip |
Closes GH-29. Blog posts act as taggable. rspec & cukes passing
Diffstat (limited to 'features/tags.feature')
-rw-r--r-- | features/tags.feature | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/features/tags.feature b/features/tags.feature index d8b9427..07c73cd 100644 --- a/features/tags.feature +++ b/features/tags.feature @@ -2,15 +2,14 @@ Feature: Blog Post Tags Blog posts can be assigned tags - Scenario: The blog post new/edit form has tag_list + Background: Given I am a logged in refinery user - + + Scenario: The blog post new/edit form has tag_list When I am on the new blog post form Then I should see "Tags" Scenario: The blog post new/edit form saves tag_list - Given I am a logged in refinery user - When I am on the new blog post form And I fill in "Title" with "This is my blog post" And I fill in "Body" with "And I love it" @@ -18,4 +17,10 @@ Feature: Blog Post Tags And I press "Save" Then there should be 1 blog post - And the blog post should have the tags "chicago, bikes, beers, babes"
\ No newline at end of file + And the blog post should have the tags "chicago, bikes, beers, babes" + + Scenario: The blog has a "tagged" route & view + Given there is a blog post titled "I love my city" and tagged "chicago" + When I visit the tagged posts page for "chicago" + Then I should see "Chicago" + And I should see "I love my city"
\ No newline at end of file |