Sha256: 75426f50a4d9b65f39335ebb960fcb1d306961dd361c089b1532c7bee9f1058e

Contents?: true

Size: 1.14 KB

Versions: 4

Compression:

Stored size: 1.14 KB

Contents

require 'spec_helper'

describe 'lambda' do
  describe '#compose' do
    subject { lambda{|x| x.to_s} }

    it_should_behave_like 'composable'
  end

  describe '#with_args' do
    subject { lambda{|x, y, *z| [x, y] + z.to_a } }
    it_should_behave_like 'with_args'
  end

  describe '#flip' do
    context 'arity = 1' do
      subject { lambda{|x| [x] } }

      it_should_behave_like 'flip(arity=1)'
    end

    context 'arity > 1' do
      subject { lambda{|x, y| [x, y] } }

      it_should_behave_like 'flip'
    end

    context 'varargs' do
      subject { lambda{|*x| x } }

      it_should_behave_like 'flip(varargs)'
    end
  end

  describe '#curry' do
    subject { lambda{|x, y| [x, y] } }

    it_should_behave_like 'curry'

    context 'varargs' do
      subject { lambda{|*x| x } }

      it_should_behave_like 'curry(varargs)'
    end
  end

  describe '#call' do
    subject { lambda{|x| x.to_s + "_f"} }

    it_should_behave_like 'call'
  end

  describe 'ailases' do
    subject { lambda{|x| x.to_s + "_f"} }

    it_should_behave_like 'aliases'
    it_should_behave_like 'aliases(varargs)' do
      subject { lambda{|*x| x } }
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
lambda_driver-1.1.2 spec/lambda_spec.rb
lambda_driver-1.1.1 spec/lambda_spec.rb
lambda_driver-1.1.0 spec/lambda_spec.rb
lambda_driver-1.0.0 spec/lambda_spec.rb