##// END OF EJS Templates
Adds missing visibility scope....
Adds missing visibility scope. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3866 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2773:7b0cb6aba871
r3752:fe63eefc1f4a
Show More
backwards_compat_test.rb
7 lines | 283 B | text/x-ruby | RubyLexer
/ vendor / plugins / engines / test / unit / backwards_compat_test.rb
require File.dirname(__FILE__) + '/../test_helper'
class BackwardsCompatibilityTest < Test::Unit::TestCase
def test_rails_module_plugin_method_should_delegate_to_engines_plugins
assert_nothing_raised { Rails.plugins }
assert_equal Engines.plugins, Rails.plugins
end
end