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-3.0.2/spec/ruby/core/proc/compose_spec.rb
require_relative '../../spec_helper'
require_relative 'shared/compose'

ruby_version_is "2.6" do
  describe "Proc#<<" do
    it "returns a Proc that is the composition of self and the passed Proc" do
      upcase = proc { |s| s.upcase }
      succ = proc { |s| s.succ }

      (succ << upcase).call('Ruby').should == "RUBZ"
    end

    it "calls passed Proc with arguments and then calls self with result" do
      f = proc { |x| x * x }
      g = proc { |x| x + x }

      (f << g).call(2).should == 16
      (g << f).call(2).should == 8
    end

    it "accepts any callable object" do
      inc = proc { |n| n + 1 }

      double = Object.new
      def double.call(n); n * 2; end

      (inc << double).call(3).should == 7
    end

    it_behaves_like :proc_compose, :<<, -> { proc { |s| s.upcase } }

    describe "composition" do
      it "is a Proc" do
        f = proc { |x| x * x }
        g = proc { |x| x + x }

        (f << g).is_a?(Proc).should == true
        (f << g).should_not.lambda?
      end

      ruby_version_is(''...'3.0') do
        it "is a Proc when other is lambda" do
          f = proc { |x| x * x }
          g = -> x { x + x }

          (f << g).is_a?(Proc).should == true
          (f << g).should_not.lambda?
        end

        it "is a lambda when self is lambda" do
          f = -> x { x * x }
          g = proc { |x| x + x }

          (f << g).is_a?(Proc).should == true
          (f << g).should.lambda?
        end
      end

      ruby_version_is('3.0') do
        it "is a lambda when parameter is lambda" do
          f = -> x { x * x }
          g = proc { |x| x + x }
          lambda_proc = -> x { x }

          (f << g).is_a?(Proc).should == true
          (f << g).should_not.lambda?
          (f << lambda_proc).should.lambda?
        end
      end

      it "may accept multiple arguments" do
        inc = proc { |n| n + 1 }
        mul = proc { |n, m| n * m }

        (inc << mul).call(2, 3).should == 7
      end

      it "passes blocks to the second proc" do
        ScratchPad.record []
        one = proc { |&arg| arg.call :one if arg }
        two = proc { |&arg| arg.call :two if arg }
        (one << two).call { |x| ScratchPad << x }
        ScratchPad.recorded.should == [:two]
      end
    end
  end

  describe "Proc#>>" do
    it "returns a Proc that is the composition of self and the passed Proc" do
      upcase = proc { |s| s.upcase }
      succ = proc { |s| s.succ }

      (succ >> upcase).call('Ruby').should == "RUBZ"
    end

    it "calls passed Proc with arguments and then calls self with result" do
      f = proc { |x| x * x }
      g = proc { |x| x + x }

      (f >> g).call(2).should == 8
      (g >> f).call(2).should == 16
    end

    it "accepts any callable object" do
      inc = proc { |n| n + 1 }

      double = Object.new
      def double.call(n); n * 2; end

      (inc >> double).call(3).should == 8
    end

    it_behaves_like :proc_compose, :>>, -> { proc { |s| s.upcase } }

    describe "composition" do
      it "is a Proc" do
        f = proc { |x| x * x }
        g = proc { |x| x + x }

        (f >> g).is_a?(Proc).should == true
        (f >> g).should_not.lambda?
      end

      it "is a Proc when other is lambda" do
        f = proc { |x| x * x }
        g = -> x { x + x }

        (f >> g).is_a?(Proc).should == true
        (f >> g).should_not.lambda?
      end

      it "is a lambda when self is lambda" do
        f = -> x { x * x }
        g = proc { |x| x + x }

        (f >> g).is_a?(Proc).should == true
        (f >> g).should.lambda?
      end

      it "may accept multiple arguments" do
        inc = proc { |n| n + 1 }
        mul = proc { |n, m| n * m }

        (mul >> inc).call(2, 3).should == 7
      end

      it "passes blocks to the first proc" do
        ScratchPad.record []
        one = proc { |&arg| arg.call :one if arg }
        two = proc { |&arg| arg.call :two if arg }
        (one >> two).call { |x| ScratchPad << x }
        ScratchPad.recorded.should == [:one]
      end
    end
  end
end