summaryrefslogtreecommitdiff
path: root/spec/ruby/core/string/shared/strip.rb
blob: 0c0aae20f350ef177987384fbaa414c15ac0abdd (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
require_relative '../../../spec_helper'
require_relative '../fixtures/classes'

describe :string_strip, shared: true do
  it "returns a String in the same encoding as self" do
    " hello ".encode("US-ASCII").send(@method).encoding.should == Encoding::US_ASCII
  end

  ruby_version_is '3.0' do
    it "returns String instances when called on a subclass" do
      StringSpecs::MyString.new(" hello ").send(@method).should be_an_instance_of(String)
      StringSpecs::MyString.new(" ").send(@method).should be_an_instance_of(String)
      StringSpecs::MyString.new("").send(@method).should be_an_instance_of(String)
    end
  end

  ruby_version_is ''...'3.0' do
    it "returns subclass instances when called on a subclass" do
      StringSpecs::MyString.new(" hello ").send(@method).should be_an_instance_of(StringSpecs::MyString)
      StringSpecs::MyString.new(" ").send(@method).should be_an_instance_of(StringSpecs::MyString)
      StringSpecs::MyString.new("").send(@method).should be_an_instance_of(StringSpecs::MyString)
    end
  end
end