aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/gzip_test.rb
diff options
context:
space:
mode:
authorSantiago Pastorino and Emilio Tagua <santiago+emilioe@wyeworks.com>2011-02-09 08:36:44 -0200
committerSantiago Pastorino and Emilio Tagua <santiago+emilioe@wyeworks.com>2011-02-09 08:36:44 -0200
commit0faa7ee2a05b261ef89fb4652eaa0cfeef86c1d5 (patch)
treefbe87339abd7dc8b45a88a5aaab658cea4c362f1 /activesupport/test/gzip_test.rb
parent3eb25fb8806c0b161d2d1d9cb22d0bdfc7b0ce63 (diff)
downloadrails-0faa7ee2a05b261ef89fb4652eaa0cfeef86c1d5.tar.gz
rails-0faa7ee2a05b261ef89fb4652eaa0cfeef86c1d5.tar.bz2
rails-0faa7ee2a05b261ef89fb4652eaa0cfeef86c1d5.zip
Add missing require
Diffstat (limited to 'activesupport/test/gzip_test.rb')
-rw-r--r--activesupport/test/gzip_test.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activesupport/test/gzip_test.rb b/activesupport/test/gzip_test.rb
index 6adfab0359..f564e63f29 100644
--- a/activesupport/test/gzip_test.rb
+++ b/activesupport/test/gzip_test.rb
@@ -1,4 +1,5 @@
require 'abstract_unit'
+require 'active_support/core_ext/object/blank'
class GzipTest < Test::Unit::TestCase
def test_compress_should_decompress_to_the_same_value
@@ -14,4 +15,4 @@ class GzipTest < Test::Unit::TestCase
assert !compressed.blank?, "a compressed blank string should not be blank"
end
-end \ No newline at end of file
+end