class Poisol::Stub

Attributes

called_count[RW]
request[RW]
response[RW]

Public Class Methods

new() click to toggle source
# File lib/poisol/stub/stub.rb, line 4
def initialize
  @called_count = 0
  @request = Request.new
  @response = Response.new
end