Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. require 'application_system_test_case'
  2.  
  3. class HomepagesTest < ApplicationSystemTestCase
  4. test 'homepage shows store name' do
  5. visit root_path
  6.  
  7. assert_content 'My Tiendita Punto Com'
  8. end
  9.  
  10. test 'homepage shows slogan' do
  11. visit root_path
  12.  
  13. assert_content 'Los mejores productos al mejor precio'
  14. end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement