Sha256: 30d1fcde220902a97e3f8f19032e945f11a042b54e48999273c2af9255b824ba

Contents?: true

Size: 1.52 KB

Versions: 65

Compression:

Stored size: 1.52 KB

Contents

module RSpec
  module Matchers
    module BuiltIn
      class StartAndEndWith < BaseMatcher
        def initialize(*expected)
          @expected = expected.length == 1 ? expected.first : expected
        end

        def matches?(actual)
          @actual = actual.respond_to?(:[]) ? actual : (raise ArgumentError.new("#{actual.inspect} does not respond to :[]"))
          begin
            @expected.respond_to?(:length) ? subset_matches?(@expected, @actual) : element_matches?(@expected, @actual)
          rescue ArgumentError
            raise ArgumentError.new("#{actual.inspect} does not have ordered elements")
          end
        end

        def failure_message_for_should
          "expected #{@actual.inspect} to #{self.class.name.split('::').last.sub(/With/,'').downcase} with #{@expected.inspect}"
        end

        def failure_message_for_should_not
          "expected #{@actual.inspect} not to #{self.class.name.split('::').last.sub(/With/,'').downcase} with #{@expected.inspect}"
        end
      end

      class StartWith < StartAndEndWith
        def subset_matches?(expected, actual)
          actual[0, expected.length] == expected
        end

        def element_matches?(expected, actual)
          @actual[0] == @expected
        end
      end

      class EndWith < StartAndEndWith
        def subset_matches?(expected, actual)
          actual[-expected.length, expected.length] == expected
        end

        def element_matches?(expected, actual)
          actual[-1] == expected
        end
      end
    end
  end
end

Version data entries

65 entries across 65 versions & 19 rubygems

Version Path
vagrant-unbundled-2.2.7.0 vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/start_and_end_with.rb
vagrant-unbundled-1.9.5.1 vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/start_and_end_with.rb
vagrant-unbundled-1.9.1.1 vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/start_and_end_with.rb
vagrant-unbundled-1.8.5.2 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/start_and_end_with.rb
vagrant-unbundled-1.8.5.1 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/start_and_end_with.rb
vagrant-unbundled-1.8.4.2 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/start_and_end_with.rb
vagrant-unbundled-1.8.4.1 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/start_and_end_with.rb
vagrant-unbundled-1.8.1.1 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/start_and_end_with.rb
opal-rspec-cj-0.4.4 vendor_lib/rspec/matchers/built_in/start_and_end_with.rb
opal-rspec-0.4.3 vendor_lib/rspec/matchers/built_in/start_and_end_with.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/start_and_end_with.rb
opal-rspec-0.4.2 vendor_lib/rspec/matchers/built_in/start_and_end_with.rb
opal-rspec-0.4.1 vendor_lib/rspec/matchers/built_in/start_and_end_with.rb
opal-rspec-0.4.0 vendor_lib/rspec/matchers/built_in/start_and_end_with.rb
opal-rspec-0.4.0.beta4 vendor_lib/rspec/matchers/built_in/start_and_end_with.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/rspec-expectations-2.13.0/lib/rspec/matchers/built_in/start_and_end_with.rb
rspec-expectations-2.99.2 lib/rspec/matchers/built_in/start_and_end_with.rb
dxruby_rp5-0.0.4 spec/vendor/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/start_and_end_with.rb
rspec-expectations-2.99.1 lib/rspec/matchers/built_in/start_and_end_with.rb
rspec-expectations-2.99.0 lib/rspec/matchers/built_in/start_and_end_with.rb