Sha256: 3981909eaea3f902510863b38dae611446d485c89e14af97f88bbd61bc0ae8b0
Contents?: true
Size: 339 Bytes
Versions: 218
Compression:
Stored size: 339 Bytes
Contents
module RSpec module Matchers module BuiltIn # @api private # Provides the implementation for `be_a_kind_of`. # Not intended to be instantiated directly. class BeAKindOf < BaseMatcher private def match(expected, actual) actual.kind_of? expected end end end end end
Version data entries
218 entries across 197 versions & 61 rubygems