1
0
Fork 0
mirror of https://github.com/twbs/bootstrap-sass.git synced 2022-11-09 12:27:02 -05:00
twbs--bootstrap-sass/test/pages_test.rb
2014-09-02 23:49:24 +02:00

14 lines
255 B
Ruby

require 'test_helper_rails'
class PagesTest < ActionDispatch::IntegrationTest
include ::DummyRailsIntegration
def test_visit_root
visit root_path
# ^ will raise on JS errors
assert_equal 200, page.status_code
screenshot!
end
end