1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

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

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