Sha256: edb130b864854fb9db5480386c8e112e4f0572c252ff766b6add41e3602bcc0e
Contents?: true
Size: 732 Bytes
Versions: 53
Compression:
Stored size: 732 Bytes
Contents
require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper") module RR module WildcardMatchers describe Numeric do attr_reader :matcher before do @matcher = Numeric.new end describe "#wildcard_match?" do context "when passed a Numeric" do it "returns true" do matcher.should be_wildcard_match(99) end end context "when not passed a Numeric" do it "returns false" do matcher.should_not be_wildcard_match(:not_a_numeric) end end end describe "#inspect" do it "returns numeric" do matcher.inspect.should == "numeric" end end end end end
Version data entries
53 entries across 49 versions & 9 rubygems