Class Spec::Mocks::ArgumentMatchers::AnyArgMatcher

  1. lib/spec/mocks/argument_matchers.rb
Parent: Object

Methods

public class

  1. new

public instance

  1. ==
  2. description

Public class methods

new (ignore)
[show source]
# File lib/spec/mocks/argument_matchers.rb, line 25
        def initialize(ignore)
        end

Public instance methods

== (other)
[show source]
# File lib/spec/mocks/argument_matchers.rb, line 28
        def ==(other)
          true
        end
description ()
[show source]
# File lib/spec/mocks/argument_matchers.rb, line 32
        def description
          "anything"
        end