HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-2.5.9/spec/ruby/core/string/delete_suffix_spec.rb
# -*- encoding: utf-8 -*-
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes.rb', __FILE__)

ruby_version_is '2.5' do
  describe "String#delete_suffix" do
    it "returns a copy of the string, with the given suffix removed" do
      'hello'.delete_suffix('ello').should == 'h'
      'hello'.delete_suffix('hello').should == ''
    end

    it "returns a copy of the string, when the suffix isn't found" do
      s = 'hello'
      r = s.delete_suffix('!hello')
      r.should_not equal s
      r.should == s
      r = s.delete_suffix('ell')
      r.should_not equal s
      r.should == s
      r = s.delete_suffix('')
      r.should_not equal s
      r.should == s
    end

    it "taints resulting strings when other is tainted" do
      'hello'.taint.delete_suffix('ello').tainted?.should == true
      'hello'.taint.delete_suffix('').tainted?.should == true
    end

    it "doesn't set $~" do
      $~ = nil

      'hello'.delete_suffix('ello')
      $~.should == nil
    end

    it "calls to_str on its argument" do
      o = mock('x')
      o.should_receive(:to_str).and_return 'ello'
      'hello'.delete_suffix(o).should == 'h'
    end

    it "returns a subclass instance when called on a subclass instance" do
      s = StringSpecs::MyString.new('hello')
      s.delete_suffix('ello').should be_an_instance_of(StringSpecs::MyString)
    end
  end

  describe "String#delete_suffix!" do
    it "removes the found prefix" do
      s = 'hello'
      s.delete_suffix!('ello').should equal(s)
      s.should == 'h'
    end

    it "returns nil if no change is made" do
      s = 'hello'
      s.delete_suffix!('ell').should == nil
      s.delete_suffix!('').should == nil
    end

    it "doesn't set $~" do
      $~ = nil

      'hello'.delete_suffix!('ello')
      $~.should == nil
    end

    it "calls to_str on its argument" do
      o = mock('x')
      o.should_receive(:to_str).and_return 'ello'
      'hello'.delete_suffix!(o).should == 'h'
    end

    it "raises a RuntimeError when self is frozen" do
      lambda { 'hello'.freeze.delete_suffix!('ello') }.should raise_error(RuntimeError)
      lambda { 'hello'.freeze.delete_suffix!('') }.should raise_error(RuntimeError)
      lambda { ''.freeze.delete_suffix!('') }.should raise_error(RuntimeError)
    end
  end
end