class Fix::Expect

Wraps the target of a Spectus expectation.

Public Class Methods

new(callable) click to toggle source

Create a new expection target

@param callable [#call] The object to test.

rubocop:disable Lint/MissingSuper

# File lib/fix/it.rb, line 15
def initialize(callable)
  @callable = callable
end