Sha256: 65c96d3ecd749e543ad5d8c562a467b7b3070693de6a614b73d7202a4628402f

Contents?: true

Size: 1.21 KB

Versions: 5

Compression:

Stored size: 1.21 KB

Contents

require 'spec_helper'

describe 'Enumerable#exactly' do
  context 'with block' do
    it 'returns true for exact number of matches' do
      expect([1, 2, 3, 4].exactly?(2, &:even?)).to be_true
    end

    it 'returns false for less matches' do
      expect([1, 3, 4].exactly?(2, &:even?)).to be_false
    end

    it 'returns false for more matches' do
      expect([1, 3, 4, 6, 8].exactly?(2, &:even?)).to be_false
    end
  end

  context 'without block' do
    it 'returns true for exact number of non nil/false elements in absence of nil/false elements' do
      expect([1, 2, 3, 4].exactly?(4)).to be_true
    end

    it 'returns true for exact number of non nil/false elements in presence of nil/false elements' do
      expect([1, 2, nil, false].exactly?(2)).to be_true
    end

    it 'returns true for exact number of nil/false elements' do
      expect([nil, false].exactly?(0)).to be_true
    end

    it 'returns false if there are less non nil/false elements in absence of nil/false elements' do
      expect([1, 2, 3].exactly?(4)).to be_false
    end

    it 'returns false if there are less non nil/false elements in presence of nil/false elements' do
      expect([1, nil, false].exactly?(4)).to be_false
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
rubyjobbuilderdsl-0.0.2 vendor/bundle/ruby/2.1.0/gems/powerpack-0.0.9/spec/powerpack/enumerable/exactly_spec.rb
rubyjobbuilderdsl-0.0.1 vendor/bundle/ruby/2.1.0/gems/powerpack-0.0.9/spec/powerpack/enumerable/exactly_spec.rb
powerpack-0.1.0 spec/powerpack/enumerable/exactly_spec.rb
powerpack-0.0.9 spec/powerpack/enumerable/exactly_spec.rb
powerpack-0.0.8 spec/powerpack/enumerable/exactly_spec.rb