mirror of
https://github.com/redmine/redmine.git
synced 2025-11-07 13:55:52 +01: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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user