6873fc8026
Upgraded to Rails 2.0.2, except that we maintain vendor/rails/actionpack/lib/action_controller/routing.rb from Rail 1.2.6 (at least for now), so that Routes don't change. We still get to enjoy Rails's many new features. Also fixed a bug in Chunk-handling: disable WikiWord processing in tags (for real this time).
29 lines
856 B
Ruby
29 lines
856 B
Ruby
$:.unshift File.dirname(__FILE__) + "/../lib"
|
|
$:.unshift File.dirname(__FILE__) + "/../../activesupport/lib"
|
|
|
|
require 'test/unit'
|
|
require 'active_support'
|
|
require 'initializer'
|
|
require File.join(File.dirname(__FILE__), 'abstract_unit')
|
|
|
|
# We need to set RAILS_ROOT if it isn't already set
|
|
RAILS_ROOT = '.' unless defined?(RAILS_ROOT)
|
|
|
|
class Test::Unit::TestCase
|
|
private
|
|
def plugin_fixture_root_path
|
|
File.join(File.dirname(__FILE__), 'fixtures', 'plugins')
|
|
end
|
|
|
|
def only_load_the_following_plugins!(plugins)
|
|
@initializer.configuration.plugins = plugins
|
|
end
|
|
|
|
def plugin_fixture_path(path)
|
|
File.join(plugin_fixture_root_path, path)
|
|
end
|
|
|
|
def assert_plugins(list_of_names, array_of_plugins, message=nil)
|
|
assert_equal list_of_names.map(&:to_s), array_of_plugins.map(&:name), message
|
|
end
|
|
end |