Sha256: ee7b214de7e6d3357517203d76c8dd2b4f3c34472d3ea2f63586edd841a7e10f

Contents?: true

Size: 1.26 KB

Versions: 36

Compression:

Stored size: 1.26 KB

Contents

module Spec
  module Matchers
    # :call-seq:
    #   should include(expected)
    #   should_not include(expected)
    #
    # Passes if actual includes expected. This works for
    # collections and Strings. You can also pass in multiple args
    # and it will only pass if all args are found in collection.
    #
    # == Examples
    #
    #   [1,2,3].should include(3)
    #   [1,2,3].should include(2,3) #would pass
    #   [1,2,3].should include(2,3,4) #would fail
    #   [1,2,3].should_not include(4)
    #   "spread".should include("read")
    #   "spread".should_not include("red")
    def include(*expected)
      Matcher.new :include, *expected do |*_expected_|
        match do |actual|
          helper(actual, *_expected_)
        end
        
        def helper(actual, *_expected_)
          _expected_.each do |expected|
            if actual.is_a?(Hash)
              if expected.is_a?(Hash)
                expected.each_pair do |k,v|
                  return false unless actual[k] == v
                end
              else
                return false unless actual.has_key?(expected)
              end
            else
              return false unless actual.include?(expected)
            end
          end
          true
        end
      end
    end
  end
end

Version data entries

36 entries across 36 versions & 11 rubygems

Version Path
rspec-instructure-1.3.3 lib/spec/matchers/include.rb
radiant-1.0.0 ruby-debug/ruby/1.8/gems/rspec-1.3.2/lib/spec/matchers/include.rb
rspec-1.3.2 lib/spec/matchers/include.rb
rspec-1.3.1 lib/spec/matchers/include.rb
rspec-1.3.1.rc lib/spec/matchers/include.rb
rspec-1.3.0 lib/spec/matchers/include.rb
hubbub-0.0.11 lib/vendor/plugins/rspec/lib/spec/matchers/include.rb
hubbub-0.0.10 lib/vendor/plugins/rspec/lib/spec/matchers/include.rb
hubbub-0.0.9 lib/vendor/plugins/rspec/lib/spec/matchers/include.rb
hubbub-0.0.8 lib/vendor/plugins/rspec/lib/spec/matchers/include.rb
hubbub-0.0.6 lib/vendor/plugins/rspec/lib/spec/matchers/include.rb
simple-templater-0.0.1.4 gems/gems/rspec-1.2.9/lib/spec/matchers/include.rb
media-path-0.1.2 vendor/rspec/lib/spec/matchers/include.rb
simple-templater-0.0.1.3 vendor/rspec/lib/spec/matchers/include.rb
pupu-0.0.2.pre vendor/rspec/lib/spec/matchers/include.rb
media-path-0.1.1.pre vendor/rspec/lib/spec/matchers/include.rb
simple-templater-0.0.1.2 vendor/rspec/lib/spec/matchers/include.rb
media-path-0.1.1 vendor/rspec/lib/spec/matchers/include.rb
simple-templater-0.0.1.1 vendor/rspec/lib/spec/matchers/include.rb
pupu-0.0.2 vendor/rspec/lib/spec/matchers/include.rb