summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringio/set_encoding_spec.rb
blob: 17aa7df23e47031b408b271ccd8248317b309c6f (plain)
1
2
3
4
5
6
7
8
9
10
require 'stringio'
require_relative '../../spec_helper'

describe "StringIO#set_encoding" do
  it "sets the encoding of the underlying String" do
    io = StringIO.new
    io.set_encoding Encoding::UTF_8
    io.string.encoding.should == Encoding::UTF_8
  end
end