aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/gzip_test.rb
blob: 626981dc9d23b42d46f6086830d7d0969d197dff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'abstract_unit'
require 'active_support/core_ext/object/blank'

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

  def test_compress_should_return_a_binary_string
    compressed = ActiveSupport::Gzip.compress('')

    assert_equal Encoding.find('binary'), compressed.encoding
    assert !compressed.blank?, "a compressed blank string should not be blank"
  end
end