Files
fizzy/test/controllers/notifications/trays_controller_test.rb
T
David Heinemeier Hansson 375afeac7b Fix test
2025-04-16 11:55:35 +02:00

15 lines
277 B
Ruby

require "test_helper"
class Notifications::TraysControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in_as :kevin
end
test "show" do
get tray_notifications_path
assert_response :success
assert_select "div", text: /Layout is broken/
end
end