aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-03-31 04:40:51 -0700
committerXavier Noria <fxn@hashref.com>2010-03-31 04:40:51 -0700
commit607f945b1dc42bc7df85063bd6b1118759c0d8a4 (patch)
tree48eea13ab2940de783825a05bb38e4c74ec9ac4b /activesupport
parent62151dd272fa59f19d8e0df7e21600b06d865539 (diff)
downloadrails-607f945b1dc42bc7df85063bd6b1118759c0d8a4.tar.gz
rails-607f945b1dc42bc7df85063bd6b1118759c0d8a4.tar.bz2
rails-607f945b1dc42bc7df85063bd6b1118759c0d8a4.zip
adds missing require for blank? and present?
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/testing/assertions.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/testing/assertions.rb b/activesupport/lib/active_support/testing/assertions.rb
index e01aa80877..33793f0688 100644
--- a/activesupport/lib/active_support/testing/assertions.rb
+++ b/activesupport/lib/active_support/testing/assertions.rb
@@ -1,4 +1,5 @@
require 'active_support/core_ext/array/wrap'
+require 'active_support/core_ext/object/blank'
module ActiveSupport
module Testing