リビジョン e053169c
| test/test_helper.rb | ||
|---|---|---|
|
# Load the Redmine helper
|
||
|
require File.expand_path(File.dirname(__FILE__) + '/../../../test/test_helper')
|
||
|
|
||
|
module Redmine
|
||
|
module PluginFixturesLoader
|
||
|
def self.included(base)
|
||
|
base.class_eval do
|
||
|
def self.plugin_fixtures(*symbols)
|
||
|
ActiveRecord::FixtureSet.create_fixtures(File.dirname(__FILE__) + '/fixtures/', symbols)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
## functional test
|
||
|
unless ActionController::TestCase.included_modules.include?(Redmine::PluginFixturesLoader)
|
||
|
ActionController::TestCase.send :include, Redmine::PluginFixturesLoader
|
||
|
end
|
||
|
|
||
|
## unit test
|
||
|
unless ActiveSupport::TestCase.included_modules.include?(Redmine::PluginFixturesLoader)
|
||
|
ActiveSupport::TestCase.send :include, Redmine::PluginFixturesLoader
|
||
|
end
|
||
|
|
||
|
## integration test
|
||
|
unless Redmine::IntegrationTest.included_modules.include?(Redmine::PluginFixturesLoader)
|
||
|
Redmine::IntegrationTest.send :include, Redmine::PluginFixturesLoader
|
||
|
end
|
||
[phase-17]Add unit test for GlossaryCategory