aboutsummaryrefslogblamecommitdiffstats
path: root/features/support/step_definitions/tags_steps.rb
blob: 82804744737f65cdc199f37250f4e1aa36f990fb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                                         
                                                                                 


                                                                  
                                                                  
                                           
                                                        

   


                                                                   
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 = 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|
  BlogPost.last.tag_list == tag_list.split(', ')
end