aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/testing
diff options
context:
space:
mode:
authorMike Moore <mike@blowmage.com>2012-09-25 15:40:00 -0600
committerMike Moore <mike@blowmage.com>2012-09-25 15:40:00 -0600
commitb13400086c2d39a5bbc5e8a6ea26434e842fbb10 (patch)
treebf834ebc99b749ca6bc16dfbee329097a32efa16 /activesupport/test/testing
parent64f254ccf74242453421d0c495388293dbc06c71 (diff)
downloadrails-b13400086c2d39a5bbc5e8a6ea26434e842fbb10.tar.gz
rails-b13400086c2d39a5bbc5e8a6ea26434e842fbb10.tar.bz2
rails-b13400086c2d39a5bbc5e8a6ea26434e842fbb10.zip
Add missing inflector dependency
Diffstat (limited to 'activesupport/test/testing')
-rw-r--r--activesupport/test/testing/constant_lookup_test.rb2
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|