aboutsummaryrefslogtreecommitdiffstats
path: root/features/support/step_definitions/tags_steps.rb
blob: 5d4dceda965cab6d274de544a1bac8130f7845ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
Given /^there is a blog post titled "([^"]*)" and tagged "([^"]*)"$/ do |title, tag_name|
  @blog_post = Factory(:post, :title => title, :tag_list => tag_name)
end

When /^I visit the tagged posts page for "([^"]*)"$/ do |tag_name|
  visit tagged_posts_path(tag_name.parameterize)
end

Then /^the blog post should have the tags "([^"]*)"$/ do |tag_list|
  BlogPost.last.tag_list == tag_list.split(', ')
end