aboutsummaryrefslogtreecommitdiffstats
path: root/features/step_definitions/tags_steps.rb
diff options
context:
space:
mode:
Diffstat (limited to 'features/step_definitions/tags_steps.rb')
-rw-r--r--features/step_definitions/tags_steps.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/features/step_definitions/tags_steps.rb b/features/step_definitions/tags_steps.rb
new file mode 100644
index 0000000..d16f758
--- /dev/null
+++ b/features/step_definitions/tags_steps.rb
@@ -0,0 +1,13 @@
+Given /^there is a blog post titled "([^"]*)" and tagged "([^"]*)"$/ do |title, tag_name|
+ @blog_post = Factory.create(:blog_post, :title => title, :tag_list => tag_name)
+end
+
+When /^I visit the tagged posts page for "([^"]*)"$/ do |tag_name|
+ @blog_post ||= Factory.create(:blog_post, :tag_list => tag_name)
+ tag = ::Refinery::BlogPost.tag_counts_on(:tags).first
+ visit tagged_posts_path(tag.id, tag_name.parameterize)
+end
+
+Then /^the blog post should have the tags "([^"]*)"$/ do |tag_list|
+ ::Refinery::BlogPost.last.tag_list == tag_list.split(', ')
+end