Guest User

Untitled

a guest
Apr 26th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. %p
  2. This product is worth:
  3. = @amount
  4. So buy it now!
  5.  
  6. expect(ActionMailer::Base.deliveries.last.html_part.body).to include("This product is worth: €30 So buy it now")
  7.  
  8. expect(ActionMailer::Base.deliveries.last.html_part.body.raw_source).to include("This product is worth: €30 So buy it now")
  9.  
  10. expect(ActionMailer::Base.deliveries.last.html_part.body.raw_source).to have_content("This product is worth: €30 So buy it now")
  11.  
  12. + This product is worth:
  13. + €30
  14. + So buy it now!
  15.  
  16. expect(ActionMailer::Base.deliveries.last.html_part.body.raw_source).to have_content(
  17. %q|This product is worth:
  18. €30
  19. So buy it now|)
Add Comment
Please, Sign In to add comment