]> git.openstreetmap.org Git - rails.git/blob - test/controllers/messages/muted_inboxes_controller_test.rb
Add frozen_string_literal comments to ruby files
[rails.git] / test / controllers / messages / muted_inboxes_controller_test.rb
1 # frozen_string_literal: true
2
3 require "test_helper"
4
5 module Messages
6   class MutedInboxesControllerTest < ActionDispatch::IntegrationTest
7     ##
8     # test all routes which lead to this controller
9     def test_routes
10       assert_routing(
11         { :path => "/messages/muted", :method => :get },
12         { :controller => "messages/muted_inboxes", :action => "show" }
13       )
14     end
15   end
16 end