Sha256: f633cef9877266ad97d039b6070f4fcecd790b3a9502cf36ef3ebe6a29ad5d8e

Contents?: true

Size: 353 Bytes

Versions: 28

Compression:

Stored size: 353 Bytes

Contents

module Mocha

  class MethodMatcher

    attr_reader :expected_method_name

    def initialize(expected_method_name)
      @expected_method_name = expected_method_name
    end

    def match?(actual_method_name)
      @expected_method_name == actual_method_name.to_sym
    end

    def mocha_inspect
      "#{@expected_method_name}"
    end

  end

end

Version data entries

28 entries across 24 versions & 5 rubygems

Version Path
mocha-1.6.0 lib/mocha/method_matcher.rb
mocha-1.5.0 lib/mocha/method_matcher.rb
mocha-1.4.0 lib/mocha/method_matcher.rb
mocha-1.3.0 lib/mocha/method_matcher.rb
mocha-1.2.1 lib/mocha/method_matcher.rb
mocha-1.2.0 lib/mocha/method_matcher.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/mocha-1.0.0/lib/mocha/method_matcher.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/mocha-1.0.0/lib/mocha/method_matcher.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/mocha-1.0.0/lib/mocha/method_matcher.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/mocha-1.0.0/lib/mocha/method_matcher.rb
mocha-1.1.0 lib/mocha/method_matcher.rb
mocha-1.0.0 lib/mocha/method_matcher.rb
mocha-1.0.0.alpha lib/mocha/method_matcher.rb
tnargav-1.3.3 vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/method_matcher.rb
challah-1.0.0 vendor/bundle/gems/mocha-0.14.0/lib/mocha/method_matcher.rb
tnargav-1.2.3 vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/method_matcher.rb
mocha-0.14.0 lib/mocha/method_matcher.rb
challah-1.0.0.beta3 vendor/bundle/gems/mocha-0.13.3/lib/mocha/method_matcher.rb
mocha-0.14.0.alpha lib/mocha/method_matcher.rb
challah-1.0.0.beta2 vendor/bundle/gems/mocha-0.13.3/lib/mocha/method_matcher.rb