Sha256: 4c3cc61358910ca8ed85d5a02b562f7e51f9cd1cf52ca6025ae79e71e16dcb03

Contents?: true

Size: 149 Bytes

Versions: 4

Compression:

Stored size: 149 Bytes

Contents

class RecordingExecutor
  attr_reader :commands

  def initialize
    @commands = []
  end

  def invoke(command)
    @commands << command
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
big_brother-0.3.1 spec/support/recording_executor.rb
big_brother-0.3.0 spec/support/recording_executor.rb
big_brother-0.2.1 spec/support/recording_executor.rb
big_brother-0.1.0 spec/support/recording_executor.rb