2022-12-23 14:21:51 +01:00
|
|
|
require "test_helper"
|
|
|
|
|
|
|
|
class StylesTest < ActionDispatch::IntegrationTest
|
|
|
|
include Devise::Test::IntegrationHelpers # Rails >= 5
|
|
|
|
|
|
|
|
def test_returns_success
|
|
|
|
visit "/merged/styles/index"
|
2023-01-10 11:24:28 +01:00
|
|
|
assert_title page, "Merged"
|
2022-12-23 14:21:51 +01:00
|
|
|
assert_text page, "Styles"
|
|
|
|
end
|
|
|
|
end
|