aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
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/lib
parent64f254ccf74242453421d0c495388293dbc06c71 (diff)
downloadrails-b13400086c2d39a5bbc5e8a6ea26434e842fbb10.tar.gz
rails-b13400086c2d39a5bbc5e8a6ea26434e842fbb10.tar.bz2
rails-b13400086c2d39a5bbc5e8a6ea26434e842fbb10.zip
Add missing inflector dependency
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/testing/constant_lookup.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/testing/constant_lookup.rb b/activesupport/lib/active_support/testing/constant_lookup.rb
index 8cb84b3f20..73e87befb6 100644
--- a/activesupport/lib/active_support/testing/constant_lookup.rb
+++ b/activesupport/lib/active_support/testing/constant_lookup.rb
@@ -1,4 +1,5 @@
require "active_support/concern"
+require "active_support/inflector"
module ActiveSupport
module Testing
@@ -33,9 +34,7 @@ module ActiveSupport
def determine_constant_from_test_name(test_name)
names = test_name.split "::"
while names.size > 0 do
- names.last.sub! /Test$/, ""
- # Rails 3.0 doesn't have safe_constantize,
- # so we'll do it the hard way.
+ names.last.sub!(/Test$/, "")
begin
constant = names.join("::").constantize
break(constant) if yield(constant)