Sha256: 1ab6696d34ef28780fe2adae6df733ce9c307eacee716874c6d1fdf55e0bf7b7

Contents?: true

Size: 1.27 KB

Versions: 21

Compression:

Stored size: 1.27 KB

Contents

require File.expand_path('../../../spec_helper', __FILE__)

describe Array do
  include WildcardMatcherMatchers

  describe '#wildcard_match?' do
    context 'when this Array has items that respond to #wildcard_match?' do
      subject { [hash_including({:foo => 'bar'})] }

      it "returns true if all items in the given Array wildcard-match corresponding items in this Array" do
        should wildcard_match([{:foo => 'bar', :baz => 'quux'}])
      end

      it "returns true if any items in the given Array do not wildcard-match corresponding items in this Array" do
        should_not wildcard_match([{:foo => 'bat', :baz => 'quux'}])
      end
    end

    context 'when this Array has items that do not respond to #wildcard_match?' do
      subject { [:a_symbol] }

      it "returns true if all items in the given Array equal-match corresponding items in this Array" do
        should wildcard_match([:a_symbol])
      end

      it "returns true if any items in the given Array do not equal-match corresponding items in this Array" do
        should_not wildcard_match([:another_symbol])
      end
    end

    context 'when not given an Array' do
      subject { [{:foo => 'bar'}] }

      it "returns false" do
        should_not wildcard_match(:something_else)
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
rr-3.1.1 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-3.1.0 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-3.0.9 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-3.0.8 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-3.0.7 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-3.0.6 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-3.0.5 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-3.0.4 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-3.0.3 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-3.0.2 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-3.0.1 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-3.0.0 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-1.2.1 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-1.2.0 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-1.1.2 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-1.1.2.rc1 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-1.1.1.rc1 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-1.1.0 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-1.1.0.rc3 spec/suites/rspec_2/unit/core_ext/array_spec.rb
rr-1.1.0.rc2 spec/suites/rspec_2/unit/core_ext/array_spec.rb