class Orchestra::Recording::Playback

Attributes

mocks[R]

Public Class Methods

build(service_recording) click to toggle source
# File lib/orchestra/recording/playback.rb, line 14
def self.build service_recording
  factory = Factory.new
  factory.build service_recording
end
new(mocks) click to toggle source
# File lib/orchestra/recording/playback.rb, line 6
def initialize mocks
  @mocks = mocks
end

Public Instance Methods

respond_to?(meth) click to toggle source
# File lib/orchestra/recording/playback.rb, line 10
def respond_to? meth
  mocks.has_key? meth
end