12 lines
264 B
Ruby
12 lines
264 B
Ruby
require "test_helper"
|
|
|
|
class StylesTest < ActionDispatch::IntegrationTest
|
|
include Devise::Test::IntegrationHelpers # Rails >= 5
|
|
|
|
def test_returns_success
|
|
visit "/merged/styles/index"
|
|
assert_title page, "Merged"
|
|
assert_text page, "Styles"
|
|
end
|
|
end
|