This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 94b895e78d3cbad8df9bae210cfb815a2ed5e5e5
tree 67f35cd6f959ca38905689e38a291fadda16594d
parent f5c5744295ea6972c4c99f9ea7b49f5a381bd8aa
tree 67f35cd6f959ca38905689e38a291fadda16594d
parent f5c5744295ea6972c4c99f9ea7b49f5a381bd8aa
README
RSpec Matcher Helper ===================== Created by Nolan Eakins <nolan@eakins.net> This library is in the public domain. An Example =========== matcher :inherits_from do def initialize(expecting) @expecting = expecting end def matches?(target) target == @expecting end end matcher :match_five => :inherits_from do def initialize #:nodoc:all super(5) end end describe Something do it "uses the matcher" do (2 + 2).should_not match_five end end








