Sha256: cf24d7df125ed46a9d67a8ea633106a5cf8b630e647b03a318604c52b72e6870
Contents?: true
Size: 1.35 KB
Versions: 5
Compression:
Stored size: 1.35 KB
Contents
# -*- encoding : utf-8 -*- require 'spec_helper' describe Proc do describe '#compose' do subject { Proc.new{|x| x.to_s} } it_should_behave_like 'composable' end describe '#compose_with_lifting' do subject { Proc.new{|x| x.mzero? ? x : x.to_s} } it_should_behave_like 'liftable' end describe '#with_args' do subject { Proc.new{|x, y, *z| [x, y] + z.to_a } } it_should_behave_like 'with_args' end describe '#flip' do context 'arity = 1' do subject { Proc.new{|x| [x] } } it_should_behave_like 'flip(arity=1)' end context 'arity > 1' do subject { Proc.new{|x, y| [x, y] } } it_should_behave_like 'flip' end context 'varargs' do subject { Proc.new{|*x| x } } it_should_behave_like 'flip(varargs)' end end describe '#curry' do subject { Proc.new{|x, y| [x, y] } } it_should_behave_like 'curry' context 'varargs' do subject { Proc.new{|*x| x } } it_should_behave_like 'curry(varargs)' end end describe '#call' do subject { Proc.new{|x| x.to_s + "_f"} } it_should_behave_like 'call' it_should_behave_like 'call(<)' end describe 'ailases' do subject { Proc.new{|x| x.to_s + "_f"} } it_should_behave_like 'aliases' it_should_behave_like 'aliases(varargs)' do subject { Proc.new{|*x| x } } end end end
Version data entries
5 entries across 5 versions & 1 rubygems