Don't clear plugins in tests (#16258).
git-svn-id: http://svn.redmine.org/redmine/trunk@12988 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
913c8cd2e6
commit
abf24a7d92
|
@ -113,6 +113,12 @@ module Redmine #:nodoc:
|
|||
@registered_plugins = {}
|
||||
end
|
||||
|
||||
# Removes a plugin from the registered plugins
|
||||
# It doesn't unload the plugin
|
||||
def self.unregister(id)
|
||||
@registered_plugins.delete(id)
|
||||
end
|
||||
|
||||
# Checks if a plugin is installed
|
||||
#
|
||||
# @param [String] id name of the plugin
|
||||
|
|
|
@ -148,7 +148,8 @@ class SettingsControllerTest < ActionController::TestCase
|
|||
assert_tag 'form', :attributes => {:action => '/settings/plugin/foo'},
|
||||
:descendant => {:tag => 'input', :attributes => {:name => 'settings[sample_setting]', :value => 'Plugin setting value'}}
|
||||
|
||||
Redmine::Plugin.clear
|
||||
ensure
|
||||
Redmine::Plugin.unregister(:foo)
|
||||
end
|
||||
|
||||
def test_get_invalid_plugin_settings
|
||||
|
@ -162,7 +163,8 @@ class SettingsControllerTest < ActionController::TestCase
|
|||
get :plugin, :id => 'foo'
|
||||
assert_response 404
|
||||
|
||||
Redmine::Plugin.clear
|
||||
ensure
|
||||
Redmine::Plugin.unregister(:foo)
|
||||
end
|
||||
|
||||
def test_post_plugin_settings
|
||||
|
@ -181,6 +183,7 @@ class SettingsControllerTest < ActionController::TestCase
|
|||
post :plugin, :id => 'foo', :settings => {'sample_setting' => 'Value'}
|
||||
assert_response 404
|
||||
|
||||
Redmine::Plugin.clear
|
||||
ensure
|
||||
Redmine::Plugin.unregister(:foo)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue