Files
fizzy/test/controllers/notifications/trays_controller_test.rb
T
2025-01-16 17:48:38 +00:00

15 lines
276 B
Ruby

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