Sha256: ffab1813f00ca6dbddd1f4129e2a71b1f76c764b214e7c5980251a7a6935d087

Contents?: true

Size: 636 Bytes

Versions: 18

Compression:

Stored size: 636 Bytes

Contents

module Rspec
  module Matchers
    # :call-seq:
    #   should be_kind_of(expected)
    #   should be_a_kind_of(expected)
    #   should_not be_kind_of(expected)
    #   should_not be_a_kind_of(expected)
    #
    # Passes if actual.kind_of?(expected)
    #
    # == Examples
    #
    #   5.should be_kind_of(Fixnum)
    #   5.should be_kind_of(Numeric)
    #   5.should_not be_kind_of(Float)
    def be_a_kind_of(expected)
      Matcher.new :be_a_kind_of, expected do |_expected_|
        match do |actual|
          actual.kind_of?(_expected_)
        end
      end
    end
    
    alias_method :be_kind_of, :be_a_kind_of
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
rspec-expectations-2.0.0.beta.8 lib/rspec/matchers/be_kind_of.rb
rspec-expectations-2.0.0.beta.7 lib/rspec/matchers/be_kind_of.rb
rspec-expectations-2.0.0.beta.6 lib/rspec/matchers/be_kind_of.rb
rspec-expectations-2.0.0.beta.5 lib/rspec/matchers/be_kind_of.rb
rspec-expectations-2.0.0.beta.4 lib/rspec/matchers/be_kind_of.rb
rspec-expectations-2.0.0.beta.3 lib/rspec/matchers/be_kind_of.rb
rspec-expectations-2.0.0.beta.2 lib/rspec/matchers/be_kind_of.rb
rspec-expectations-2.0.0.beta.1 lib/rspec/matchers/be_kind_of.rb
rspec-expectations-2.0.0.a10 lib/rspec/matchers/be_kind_of.rb
rspec-expectations-2.0.0.a9 lib/rspec/matchers/be_kind_of.rb
rspec-expectations-2.0.0.a8 lib/rspec/matchers/be_kind_of.rb
rspec-expectations-2.0.0.a7 lib/rspec/matchers/be_kind_of.rb
rspec-expectations-2.0.0.a6 lib/rspec/matchers/be_kind_of.rb
rspec-expectations-2.0.0.a5 lib/rspec/matchers/be_kind_of.rb
rspec-expectations-2.0.0.a4 lib/rspec/matchers/be_kind_of.rb
rspec-expectations-2.0.0.a3 lib/rspec/matchers/be_kind_of.rb
rspec-expectations-2.0.0.a2 lib/rspec/matchers/be_kind_of.rb
rspec-expectations-2.0.0.a1 lib/rspec/matchers/be_kind_of.rb