Sha256: 23a6695ebb1920305ec03ad0eb8f2a48c844f60a4009703a1a36a64abb3231a4
Contents?: true
Size: 834 Bytes
Versions: 56
Compression:
Stored size: 834 Bytes
Contents
require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper") module RR module WildcardMatchers describe Boolean do attr_reader :matcher before do @matcher = Boolean.new end describe "#wildcard_match?" do context "when passed a Boolean" do it "returns true" do matcher.should be_wildcard_match(true) matcher.should be_wildcard_match(false) end end context "when not passed a Boolean" do it "returns false" do matcher.should_not be_wildcard_match(:not_a_boolean) end end end describe Boolean do describe "#inspect" do it "returns boolean" do matcher.inspect.should == "boolean" end end end end end end
Version data entries
56 entries across 52 versions & 9 rubygems