Guest User

Untitled

a guest
Apr 25th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. describe "Comments link" do
  2. before do
  3. @medical_provider = stub('medical provider', :actual_provider => @actual_provider, :id => 1, :name => 'Dr. Awesom', :comments.count => '2')
  4. end
  5.  
  6. it 'should display comments count' do
  7. render_show
  8. response.should have_tag('div[class=?]', 'comments_badge')
  9. with_tag('a[href=?]', '#comments','2')
  10. end
  11. end
Add Comment
Please, Sign In to add comment