Added a test for Gzip

This commit is contained in:
David Heinemeier Hansson 2008-06-02 17:42:10 -05:00
parent bd75a722a2
commit a855ab89b7
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
require 'abstract_unit'
class GzipTest < Test::Unit::TestCase
def test_compress_should_decompress_to_the_same_value
assert_equal "Hello World", ActiveSupport::Gzip.decompress(ActiveSupport::Gzip.compress("Hello World"))
end
end