sanger/limber

View on GitHub
app/models/robots/report.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module Robots
  # Simple report object packaged up for easy json rendering and testing
  Report = Struct.new(:beds, :valid, :message) { alias_method :valid?, :valid }
end