projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge remote-tracking branch 'upstream/pull/5697'
[rails.git]
/
test
/
controllers
/
messages
/
muted_inboxes_controller_test.rb
1
require "test_helper"
2
3
module Messages
4
class MutedInboxesControllerTest < ActionDispatch::IntegrationTest
5
##
6
# test all routes which lead to this controller
7
def test_routes
8
assert_routing(
9
{ :path => "/messages/muted", :method => :get },
10
{ :controller => "messages/muted_inboxes", :action => "show" }
11
)
12
end
13
end
14
end