aboutsummaryrefslogtreecommitdiffstats
path: root/features/support/step_definitions/tags_steps.rb
blob: d16f758f97642ad13b3ec901485a6d540555d053 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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