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

15 lines
255 B
Ruby
Raw Normal View History

2014-09-02 23:48:44 +02:00
require 'test_helper_rails'
2013-09-09 20:56:17 +02:00
class PagesTest < ActionDispatch::IntegrationTest
2014-09-02 23:48:44 +02:00
include ::DummyRailsIntegration
2013-09-09 20:56:17 +02:00
def test_visit_root
visit root_path
# ^ will raise on JS errors
2013-09-10 18:01:56 +02:00
assert_equal 200, page.status_code
2013-09-09 20:56:17 +02:00
screenshot!
end
2014-09-02 23:48:44 +02:00
end