diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-11-30 15:16:43 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-11-30 15:16:43 +0000 |
commit | 8e84b1a48f49919806650baad353f3abd70ef1f4 (patch) | |
tree | b57bda56d4f57ea75a3bd8523df706b6abc5705b /test/integration/lib | |
parent | d22029083c486bb4d67bee26cf496f642491890c (diff) | |
download | redmine-8e84b1a48f49919806650baad353f3abd70ef1f4.tar.gz redmine-8e84b1a48f49919806650baad353f3abd70ef1f4.zip |
Moved helpers for integration tests in a specific class.
git-svn-id: http://svn.redmine.org/redmine/trunk@13680 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration/lib')
-rw-r--r-- | test/integration/lib/redmine/hook_test.rb | 2 | ||||
-rw-r--r-- | test/integration/lib/redmine/menu_manager_test.rb | 2 | ||||
-rw-r--r-- | test/integration/lib/redmine/themes_test.rb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/integration/lib/redmine/hook_test.rb b/test/integration/lib/redmine/hook_test.rb index 9e5c5bbb1..20509ce4e 100644 --- a/test/integration/lib/redmine/hook_test.rb +++ b/test/integration/lib/redmine/hook_test.rb @@ -17,7 +17,7 @@ require File.expand_path('../../../../test_helper', __FILE__) -class HookTest < ActionDispatch::IntegrationTest +class HookTest < Redmine::IntegrationTest fixtures :users, :roles, :projects, :members, :member_roles # Hooks that are manually registered later diff --git a/test/integration/lib/redmine/menu_manager_test.rb b/test/integration/lib/redmine/menu_manager_test.rb index bc4fbf017..531af524a 100644 --- a/test/integration/lib/redmine/menu_manager_test.rb +++ b/test/integration/lib/redmine/menu_manager_test.rb @@ -17,7 +17,7 @@ require File.expand_path('../../../../test_helper', __FILE__) -class MenuManagerTest < ActionDispatch::IntegrationTest +class MenuManagerTest < Redmine::IntegrationTest include Redmine::I18n fixtures :projects, :trackers, :issue_statuses, :issues, diff --git a/test/integration/lib/redmine/themes_test.rb b/test/integration/lib/redmine/themes_test.rb index f0d422c58..601e2e2b4 100644 --- a/test/integration/lib/redmine/themes_test.rb +++ b/test/integration/lib/redmine/themes_test.rb @@ -17,7 +17,7 @@ require File.expand_path('../../../../test_helper', __FILE__) -class ThemesTest < ActionDispatch::IntegrationTest +class ThemesTest < Redmine::IntegrationTest def setup @theme = Redmine::Themes.themes.last |