aboutsummaryrefslogtreecommitdiffstats
path: root/features/tags.feature
diff options
context:
space:
mode:
authorJamie Winsor <jamie@enmasse.com>2011-08-04 15:39:04 -0700
committerJamie Winsor <jamie@enmasse.com>2011-08-04 15:39:04 -0700
commitee215655cba5820c3ffe0c665ea71c11f15f3bf9 (patch)
treeaa1da7816aecf14c2033dff124cf867f30b7581b /features/tags.feature
parent8bd056e3e8baa108b2e10e460ceeeed3ec7c4c86 (diff)
downloadrefinerycms-blog-ee215655cba5820c3ffe0c665ea71c11f15f3bf9.tar.gz
refinerycms-blog-ee215655cba5820c3ffe0c665ea71c11f15f3bf9.tar.bz2
refinerycms-blog-ee215655cba5820c3ffe0c665ea71c11f15f3bf9.zip
Replace cucumber tag features with rspec request tests
Remove cucumber support from project
Diffstat (limited to 'features/tags.feature')
-rw-r--r--features/tags.feature26
1 files changed, 0 insertions, 26 deletions
diff --git a/features/tags.feature b/features/tags.feature
deleted file mode 100644
index 24dff2a..0000000
--- a/features/tags.feature
+++ /dev/null
@@ -1,26 +0,0 @@
-@blog @blog_tags
-Feature: Blog Post Tags
- Blog posts can be assigned tags
-
- 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
- When I am on the new blog post form
- And I fill in "Title" with "This is my blog post"
- And I fill in "blog_post_body" with "And I love it"
- And I fill in "Tags" with "chicago, bikes, beers, babes"
- And I press "Save"
-
- Then there should be 1 blog post
- 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