jbender/motion-spec

View on GitHub
lib/motion-spec/extensions/numeric.rb

Summary

Maintainability
A
0 mins
Test Coverage
# -*- encoding : utf-8 -*-
class Numeric
  def close?(to, delta)
    (to.to_f - self).abs <= delta.to_f
  rescue
    false
  end
end