Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. # spec/features/twitter_timeline_spec.rb
  2. require 'feature_helper'
  3.  
  4. RSpec.feature 'twitter timeline' do
  5. scenario 'a user views a twitter timeline' do
  6. pending
  7.  
  8. visit root_path
  9.  
  10. within '[data-twitter-app]' do
  11. within '[data-tweets]' do
  12. expect(page).to have_css '.tweet', minimum: 2
  13. end
  14. end
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement