Sha256: 5d5024f0dc48cff943de00a2306939ab76e23aa925d14c7ef9ac1809bbffc652

Contents?: true

Size: 1.75 KB

Versions: 25

Compression:

Stored size: 1.75 KB

Contents

require "examples/example_helper"

module RR
module Expectations
  describe ArgumentEqualityExpectation, "#exact_match? with range argument" do
    before do
      @expectation = ArgumentEqualityExpectation.new(2..5)
    end
    
    it "returns true when passed in an Range matcher with the same argument list" do
      @expectation.should be_exact_match(2..5)
    end

    it "returns false when passed in an Range matcher with a different argument list" do
      @expectation.should_not be_exact_match(3..6)
    end

    it "returns false otherwise" do
      @expectation.should_not be_exact_match(2)
      @expectation.should_not be_exact_match(:hello)
      @expectation.should_not be_exact_match(3)
      @expectation.should_not be_exact_match(nil)
      @expectation.should_not be_exact_match(true)
      @expectation.should_not be_exact_match()
    end
  end

  describe ArgumentEqualityExpectation, "#wildcard_match? with Range argument" do
    before do
      @expectation = ArgumentEqualityExpectation.new(2..6)
    end

    it "returns true when string matches the range" do
      @expectation.should be_wildcard_match(3)
    end

    it "returns false when string does not match the range" do
      @expectation.should_not be_wildcard_match(7)
    end

    it "returns true when an exact match" do
      @expectation.should be_wildcard_match(2..6)
    end

    it "returns false when not an exact match" do
      @expectation.should_not be_wildcard_match(3..9)
    end

    it "returns false when not a number" do
      @expectation.should_not be_wildcard_match("Not a number")
    end

    it "returns false when not passed correct number of arguments" do
      @expectation.should_not be_wildcard_match()
      @expectation.should_not be_wildcard_match(2, 3)
    end
  end
end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
rr-0.1.11 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.1.12 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.1.15 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.1.10 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.1.13 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.1.8 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.1.14 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.2.3 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.3.10 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.2.1 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.2.2 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.2.5 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.3.0 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.2.4 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.1.9 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.3.1 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.3.11 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.3.4 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.3.3 examples/rr/expectations/range_argument_equality_expectation_example.rb
rr-0.3.2 examples/rr/expectations/range_argument_equality_expectation_example.rb