summaryrefslogtreecommitdiff
path: root/spec/ruby/core/string/shared/each_codepoint_without_block.rb
blob: 31b4c02c9c3194046c5928459dc20a56888fd197 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- encoding: binary -*-
describe :string_each_codepoint_without_block, shared: true do
  describe "when no block is given" do
    it "returns an Enumerator" do
      "".send(@method).should be_an_instance_of(Enumerator)
    end

    it "returns an Enumerator even when self has an invalid encoding" do
      s = "\xDF".dup.force_encoding(Encoding::UTF_8)
      s.valid_encoding?.should be_false
      s.send(@method).should be_an_instance_of(Enumerator)
    end

    describe "returned Enumerator" do
      describe "size" do
        it "should return the size of the string" do
          str = "hello"
          str.send(@method).size.should == str.size
          str = "ola"
          str.send(@method).size.should == str.size
          str = "\303\207\342\210\202\303\251\306\222g"
          str.send(@method).size.should == str.size
        end

        it "should return the size of the string even when the string has an invalid encoding" do
          s = "\xDF".dup.force_encoding(Encoding::UTF_8)
          s.valid_encoding?.should be_false
          s.send(@method).size.should == 1
        end
      end
    end
  end
end