class Run

Public Instance Methods

runtime() click to toggle source
# File lib/rspectacles/app/models/run.rb, line 8
def runtime
  @runtime ||= examples.sum(:duration)
end
total_count() click to toggle source
# File lib/rspectacles/app/models/run.rb, line 4
def total_count
  @total_count ||= examples.size
end