HabitatMap/AirCasting

View on GitHub
app/models/result.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Result
  def success?
    raise NotImplementedError
  end

  def failure?
    raise NotImplementedError
  end

  def value
    raise NotImplementedError
  end

  def errors
    raise NotImplementedError
  end
end