Sha256: c6f4bec93e47d9118951def9e628068e2b4818e4434f4f6fc57241a65fa03c1d
Contents?: true
Size: 513 Bytes
Versions: 56
Compression:
Stored size: 513 Bytes
Contents
require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper") module RR module WildcardMatchers describe Anything do attr_reader :matcher before do @matcher = Anything.new end describe "#wildcard_match?" do it "returns true" do matcher.should be_wildcard_match(Object.new) end end describe "#inspect" do it "returns anything" do matcher.inspect.should == "anything" end end end end end
Version data entries
56 entries across 52 versions & 9 rubygems