module RSpec::Matchers
Public Instance Methods
method_missing(sym, *args, &block)
click to toggle source
Replacing RSpec's default method_missing
implementation so that we can include our own special default hooks that allows spec tests to look more readable.
Ideally it would have been better if RSpec
provided some nice hooks to try other default pattern matchers
Calls superclass method
# File lib/lebowski/rspec/matchers/method_missing.rb, line 17 def method_missing(sym, *args, &block) # # Note: Be sure that the symbol does not contain the word "test". test # is a private method on Ruby objects and will cause the Be and Has # matches to fail. # return Lebowski::RSpec::Matchers::Be.new(sym, *args) if sym.to_s =~ /^be_/ return Lebowski::RSpec::Matchers::Has.new(sym, *args) if sym.to_s =~ /^have_/ return Lebowski::RSpec::Operators::That.new(sym, *args) if sym.to_s =~ /^that_/ super end