class KnapsackPro::Batch

Attributes

status[R]
test_file_paths[R]

Public Class Methods

new(test_file_paths) click to toggle source
# File lib/knapsack_pro/batch.rb, line 7
def initialize(test_file_paths)
  @test_file_paths = test_file_paths
  @status = :not_executed
end

Public Instance Methods

_failed() click to toggle source
# File lib/knapsack_pro/batch.rb, line 16
def _failed
  @status = :failed
end
_passed() click to toggle source
# File lib/knapsack_pro/batch.rb, line 12
def _passed
  @status = :passed
end