Files
fizzy/test/controllers/notifications_controller_test.rb
T
2025-01-14 14:10:24 +00:00

15 lines
265 B
Ruby

require "test_helper"
class NotificationsControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in_as :kevin
end
test "index" do
get notifications_url
assert_response :success
assert_select "div", text: /Layout is broken/
end
end