class RSpec::Matchers::BeAKindOf

Public Instance Methods

matches?(actual) click to toggle source
# File lib/rspec/matchers/be_kind_of.rb, line 6
def matches?(actual)
  super(actual).kind_of?(expected)
end