Sha256: c7ed56e5bb2c01d93bb4c239d727ebc89ba92e43aa705d825b65357ac9302e76
Contents?: true
Size: 817 Bytes
Versions: 9
Compression:
Stored size: 817 Bytes
Contents
require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper") module RR module Expectations describe ArgumentEqualityExpectation do context "with a boolean matcher" do attr_reader :expectation before do @expectation = ArgumentEqualityExpectation.new(boolean) end describe "#wildcard_match?" do context "when passed a Boolean" do it "returns true" do expect(expectation).to be_wildcard_match(true) expect(expectation).to be_wildcard_match(false) end end context "when not passed a Boolean" do it "returns false" do expectation.should_not be_wildcard_match(:not_a_boolean) end end end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems