Sha256: 1a5422f83fb303250f2dc7ab2c3a342eff8471e361c79d0fc8296fa48178cf90

Contents?: true

Size: 1.27 KB

Versions: 1

Compression:

Stored size: 1.27 KB

Contents

require 'spec_helper'

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

    it_should_behave_like 'composable'
  end

  describe '#compose_with_lifting' do
    subject { lambda{|x| x.mzero? ? x : x.to_s} }

    it_should_behave_like 'liftable'
  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

1 entries across 1 versions & 1 rubygems

Version Path
lambda_driver-1.2.0 spec/lambda_spec.rb