summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/encoding/invalid_byte_sequence_error/destination_encoding_spec.rb
blob: 981a62424e844ffabb5567e37bb51b6d03f65a0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require File.expand_path('../../fixtures/classes', __FILE__)

with_feature :encoding do
  describe "Encoding::InvalidByteSequenceError#destination_encoding" do
    before :each do
      @exception, = EncodingSpecs::InvalidByteSequenceError.exception
      @exception2, = EncodingSpecs::InvalidByteSequenceErrorIndirect.exception
    end

    it "returns an Encoding object" do
      @exception.destination_encoding.should be_an_instance_of(Encoding)
      @exception2.destination_encoding.should be_an_instance_of(Encoding)
    end

    it "is equal to the destination encoding of the object that raised it" do
      @exception.destination_encoding.should == Encoding::ISO_8859_1
      @exception2.destination_encoding.should == Encoding::UTF_8
    end
  end
end