1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Ruby 1.9 compat: qualify module name within module_evaled block

This commit is contained in:
Jeremy Kemper 2008-05-19 12:57:08 -07:00
parent 2b6bec5cdd
commit b5c8433a6f

View file

@ -85,7 +85,7 @@ class HelperTest < Test::Unit::TestCase
def test_helper_block_include
assert_equal expected_helper_methods, missing_methods
assert_nothing_raised {
@controller_class.helper { include TestHelper }
@controller_class.helper { include HelperTest::TestHelper }
}
assert [], missing_methods
end