jcleary/blade

View on GitHub
app/models/test_run.rb

Summary

Maintainability
A
0 mins
Test Coverage
class TestRun < ApplicationRecord
  belongs_to :test
  belongs_to :build

  scope :slowest, -> { order(duration: :desc).limit(10) }
end