diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2012-09-25 14:42:28 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2012-09-25 14:42:28 -0700 |
commit | 267c3d0f14d094c5aa24016e0938d79a6eafc6ef (patch) | |
tree | b3c17f4fb08a5e7c8e62d6f1667b3ce7a0f0b944 /activesupport/test | |
parent | d665f91d412a29d7bd93db38b8fdbc07ed50c510 (diff) | |
parent | b13400086c2d39a5bbc5e8a6ea26434e842fbb10 (diff) | |
download | rails-267c3d0f14d094c5aa24016e0938d79a6eafc6ef.tar.gz rails-267c3d0f14d094c5aa24016e0938d79a6eafc6ef.tar.bz2 rails-267c3d0f14d094c5aa24016e0938d79a6eafc6ef.zip |
Merge pull request #7759 from blowmage/minitest
Add missing inflector dependency
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/testing/constant_lookup_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/testing/constant_lookup_test.rb b/activesupport/test/testing/constant_lookup_test.rb index f39d38e5cd..d6552b5e49 100644 --- a/activesupport/test/testing/constant_lookup_test.rb +++ b/activesupport/test/testing/constant_lookup_test.rb @@ -8,7 +8,7 @@ end class Baz < Bar; end module FooBar; end -class TestLookup < ActiveSupport::TestCase +class ConstantLookupTest < ActiveSupport::TestCase def find_foo(name) self.class.determine_constant_from_test_name(name) do |constant| |