Sha256: 26ff40b7af8b7a98e4b39af8ca48acfbc0e9f5887b889e1cab5f2fb60b30b1dc
Contents?: true
Size: 697 Bytes
Versions: 18
Compression:
Stored size: 697 Bytes
Contents
module Rspec module Matchers # :call-seq: # should be_instance_of(expected) # should be_an_instance_of(expected) # should_not be_instance_of(expected) # should_not be_an_instance_of(expected) # # Passes if actual.instance_of?(expected) # # == Examples # # 5.should be_instance_of(Fixnum) # 5.should_not be_instance_of(Numeric) # 5.should_not be_instance_of(Float) def be_an_instance_of(expected) Matcher.new :be_an_instance_of, expected do |_expected_| match do |actual| actual.instance_of?(_expected_) end end end alias_method :be_instance_of, :be_an_instance_of end end
Version data entries
18 entries across 18 versions & 1 rubygems