14 lines
363 B
Ruby
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
|