diff options
author | Xavier Noria <fxn@hashref.com> | 2010-03-31 04:40:51 -0700 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-03-31 04:40:51 -0700 |
commit | 607f945b1dc42bc7df85063bd6b1118759c0d8a4 (patch) | |
tree | 48eea13ab2940de783825a05bb38e4c74ec9ac4b | |
parent | 62151dd272fa59f19d8e0df7e21600b06d865539 (diff) | |
download | rails-607f945b1dc42bc7df85063bd6b1118759c0d8a4.tar.gz rails-607f945b1dc42bc7df85063bd6b1118759c0d8a4.tar.bz2 rails-607f945b1dc42bc7df85063bd6b1118759c0d8a4.zip |
adds missing require for blank? and present?
-rw-r--r-- | activesupport/lib/active_support/testing/assertions.rb | 1 |
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 |