class RoadForest::TraceFormatter
Constants
- DECISION_NAMES
Public Class Methods
new(trace)
click to toggle source
# File lib/roadforest/test-support/trace-formatter.rb, line 62 def initialize(trace) @trace = trace end
Public Instance Methods
to_s()
click to toggle source
# File lib/roadforest/test-support/trace-formatter.rb, line 66 def to_s Grouper.new(@trace).to_a.join("\n") end