aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/gzip_test.rb
blob: 2a24c0bd0d0462c7822f0e1e127ab596f7803056 (plain) (blame)
1
2
3
4
5
6
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