Created
July 10, 2019 19:33
-
-
Save dabit/05d2c28aba7a25e3be2db8aaae43f8f0 to your computer and use it in GitHub Desktop.
gitlabci
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'application_system_test_case' | |
class HomepagesTest < ApplicationSystemTestCase | |
test 'homepage shows store name' do | |
visit root_path | |
assert_content 'My Tiendita Punto Com' | |
end | |
test 'homepage shows slogan' do | |
visit root_path | |
assert_content 'Los mejores productos al mejor precio' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment