Sha256: 9e2e0fc221e6f56cf9ed240bd388fabd9caaf065959810c011f014fb15788f2c
Contents?: true
Size: 454 Bytes
Versions: 78
Compression:
Stored size: 454 Bytes
Contents
require 'test_helper' class Elasticsearch::Transport::Transport::ResponseTest < Test::Unit::TestCase context "Response" do should "force-encode the body into UTF" do body = "Hello Encoding!".encode(Encoding::ISO_8859_1) assert_equal 'ISO-8859-1', body.encoding.name response = Elasticsearch::Transport::Transport::Response.new 200, body assert_equal 'UTF-8', response.body.encoding.name end unless RUBY_1_8 end end
Version data entries
78 entries across 78 versions & 8 rubygems