Add missing require

This commit is contained in:
Santiago Pastorino and Emilio Tagua 2011-02-09 08:36:44 -02:00
parent 3eb25fb880
commit 0faa7ee2a0
1 changed files with 2 additions and 1 deletions

View File

@ -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
end