Sha256: 50abd73a29a9202e53fd344a68096ef8b36e8dac3c6a09d0c011604c6194c68e
Contents?: true
Size: 240 Bytes
Versions: 18
Compression:
Stored size: 240 Bytes
Contents
module Spec module Matchers def method_missing(sym, *args, &block) # :nodoc: return Matchers::Be.new(sym, *args) if sym.starts_with?("be_") return has(sym, *args) if sym.starts_with?("have_") super end end end
Version data entries
18 entries across 18 versions & 6 rubygems