Skip to content
Extraits de code Groupes Projets
stream_steps.rb 640 octets
Newer Older
  • Learn to ignore specific revisions
  • When /^I (?:like|unlike) the post "([^"]*)" in the stream$/ do |post_text|
      like_stream_post(post_text)
    
    Then /^I should see an image in the publisher$/ do
      photo_in_publisher.should be_present
    end
    
    
    Then /^"([^"]*)" should be post (\d+)$/ do |post_text, position|
    
      stream_element_numbers_content(position).should have_content(post_text)
    
    Dennis Collinson's avatar
    Dennis Collinson a validé
    
    When /^I toggle nsfw posts$/ do
    
    Jonne Haß's avatar
    Jonne Haß a validé
      find(".toggle_nsfw_state", match: :first).click
    
    augier's avatar
    augier a validé
    When /^I toggle all nsfw posts$/ do
      all("a.toggle_nsfw_state").each &:click
    end
    
    
    Dennis Collinson's avatar
    Dennis Collinson a validé
    Then /^I should have (\d+) nsfw posts$/ do |num_posts|
    
    Jonne Haß's avatar
    Jonne Haß a validé
      page.should have_css(".nsfw-shield", count: num_posts.to_i)
    
    Dennis Collinson's avatar
    Dennis Collinson a validé
    end