openstreetmap-website/test/controllers/messages/muted_inboxes_controller_test.rb
2024-12-29 08:40:39 +03:00

14 lines
363 B
Ruby

require "test_helper"
module Messages
class MutedInboxesControllerTest < ActionDispatch::IntegrationTest
##
# test all routes which lead to this controller
def test_routes
assert_routing(
{ :path => "/messages/muted", :method => :get },
{ :controller => "messages/muted_inboxes", :action => "show" }
)
end
end
end