Sha256: e6282583505b0af929a9decc05e0051352afab46f227f9ad8ab85a0b38a878d9

Contents?: true

Size: 161 Bytes

Versions: 1

Compression:

Stored size: 161 Bytes

Contents

class RecordingExecutor
  attr_reader :commands

  def initialize
    @commands = []
  end

  def invoke(command)
    @commands << command
    ["", 0]
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
big_brother-0.2.0 spec/support/recording_executor.rb