Module: RR::DoubleDefinitions::DoubleDefinition::StateQueryMethods

Included in:
RR::DoubleDefinitions::DoubleDefinition
Defined in:
lib/rr/double_definitions/double_definition.rb

Instance Method Summary collapse

Instance Method Details

#exact_match?(*arguments) ⇒ Boolean

Returns:

  • (Boolean)


301
302
303
304
305
306
# File 'lib/rr/double_definitions/double_definition.rb', line 301

def exact_match?(*arguments)
  unless @argument_expectation
    raise RR::Errors.build_error(:DoubleDefinitionError, "#argument_expectation must be defined on #{inspect}")
  end
  @argument_expectation.exact_match?(*arguments)
end

#expected_argumentsObject



322
323
324
# File 'lib/rr/double_definitions/double_definition.rb', line 322

def expected_arguments
  argument_expectation ? argument_expectation.expected_arguments : []
end

#implementation_is_original_method?Boolean

Returns:

  • (Boolean)


326
327
328
# File 'lib/rr/double_definitions/double_definition.rb', line 326

def implementation_is_original_method?
  implementation_strategy.is_a?(Strategies::Implementation::Proxy)
end

#ordered?Boolean

Double#ordered? returns true when the Double is ordered.

mock(subject).method_name.ordered?

Returns:

  • (Boolean)


291
292
293
# File 'lib/rr/double_definitions/double_definition.rb', line 291

def ordered?
  @ordered
end

#terminal?Boolean

Returns:

  • (Boolean)


315
316
317
318
319
320
# File 'lib/rr/double_definitions/double_definition.rb', line 315

def terminal?
  unless @times_matcher
    raise RR::Errors.build_error(:DoubleDefinitionError, "#argument_expectation must be defined on #{inspect}")
  end
  @times_matcher.terminal?
end

#verbose?Boolean

Double#verbose? returns true when verbose has been called on it. It returns true when the double is set to print each method call it receives.

Returns:

  • (Boolean)


297
298
299
# File 'lib/rr/double_definitions/double_definition.rb', line 297

def verbose?
  @verbose ? true : false
end

#verify_method_signature?Boolean Also known as: strong?

Returns:

  • (Boolean)


330
331
332
# File 'lib/rr/double_definitions/double_definition.rb', line 330

def verify_method_signature?
  !!@verify_method_signature
end

#wildcard_match?(*arguments) ⇒ Boolean

Returns:

  • (Boolean)


308
309
310
311
312
313
# File 'lib/rr/double_definitions/double_definition.rb', line 308

def wildcard_match?(*arguments)
  unless @argument_expectation
    raise RR::Errors.build_error(:DoubleDefinitionError, "#argument_expectation must be defined on #{inspect}")
  end
  @argument_expectation.wildcard_match?(*arguments)
end