mirror of
https://github.com/meineerde/redmine.git
synced 2026-01-31 19:47:14 +00:00
Fix typo in plugins_test.rb (#38707).
git-svn-id: https://svn.redmine.org/redmine/trunk@22371 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
f1437b7ec5
commit
b141aed19f
@ -27,7 +27,7 @@ class RoutingPluginsTest < Redmine::RoutingTest
|
||||
"config/routes.rb" => <<~ROUTES_CONTENT,
|
||||
resources :plugin_articles, only: %i[index]
|
||||
ROUTES_CONTENT
|
||||
"app/contrtollers/plugin_articles_controller.rb" => <<~CONTROLLER_CONTENT
|
||||
"app/controllers/plugin_articles_controller.rb" => <<~CONTROLLER_CONTENT
|
||||
class PluginArticlesController < ApplicationController
|
||||
def index
|
||||
render plain: "foo PluginArticlesController#index"
|
||||
@ -41,7 +41,7 @@ class RoutingPluginsTest < Redmine::RoutingTest
|
||||
# same path helper name with foo's
|
||||
get '/bar_plugin_articles', as: :plugin_articles, to: 'bar_plugin_articles#index'
|
||||
ROUTES_CONTENT
|
||||
"app/contrtollers/bar_plugin_articles_controller.rb" => <<~CONTROLLER_CONTENT
|
||||
"app/controllers/bar_plugin_articles_controller.rb" => <<~CONTROLLER_CONTENT
|
||||
class BarPluginArticlesController < ApplicationController
|
||||
def index
|
||||
render plain: "bar BarPluginArticlesController#index"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user