Sha256: e1e779786ed0c06a14f4f0671a563c0a6cd0880b48e09e2f7d64a2b29482caf2

Contents?: true

Size: 1.18 KB

Versions: 7

Compression:

Stored size: 1.18 KB

Contents

# encoding: utf-8

require 'spec_helper'

module Adhearsion
  class CallController
    module MenuDSL

      describe RangeMatchCalculator do
        it "matching with a Range should handle the case of two potential matches in the range" do
          digits_that_begin_with_eleven = [110..119, 1100..1111].map { |x| Array(x) }.flatten
          calculator = RangeMatchCalculator.new 11..1111, :match_payload_doesnt_matter
          match = calculator.match 11
          match.exact_matches.should be == [11]
          match.potential_matches.should be == digits_that_begin_with_eleven
        end

        it "return values of #match should be an instance of CalculatedMatch" do
          calculator = RangeMatchCalculator.new 1..9, :match_payload_doesnt_matter
          calculator.match(0).should be_an_instance_of CalculatedMatch
          calculator.match(1000).should be_an_instance_of CalculatedMatch
        end

        it "returns a failed match if the query is not numeric or coercible to numeric" do
          calculator = RangeMatchCalculator.new 1..9, :match_payload_doesnt_matter
          calculator.match("ABC").should be_an_instance_of CalculatedMatch
        end
      end

    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
adhearsion-2.1.3 spec/adhearsion/call_controller/menu_dsl/range_match_calculator_spec.rb
adhearsion-2.1.2 spec/adhearsion/call_controller/menu_dsl/range_match_calculator_spec.rb
adhearsion-2.1.1 spec/adhearsion/call_controller/menu_dsl/range_match_calculator_spec.rb
adhearsion-2.1.0 spec/adhearsion/call_controller/menu_dsl/range_match_calculator_spec.rb
adhearsion-2.0.1 spec/adhearsion/call_controller/menu_dsl/range_match_calculator_spec.rb
adhearsion-2.0.0 spec/adhearsion/call_controller/menu_dsl/range_match_calculator_spec.rb
adhearsion-2.0.0.rc5 spec/adhearsion/call_controller/menu_dsl/range_match_calculator_spec.rb