Sha256: 60aedf5335d83a89e89fae5b25c217ea20bf1632f53b82741867ef3d7d4c0026
Contents?: true
Size: 733 Bytes
Versions: 2
Compression:
Stored size: 733 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module Minitest # Enforces the test to use `refute_in_delta` # instead of using `refute_equal` to compare floats. # # @example # # bad # refute_equal(0.2, actual) # refute_equal(0.2, actual, 'message') # # # good # refute_in_delta(0.2, actual) # refute_in_delta(0.2, actual, 0.001, 'message') # class RefuteInDelta < Base include InDeltaMixin extend AutoCorrector RESTRICT_ON_SEND = %i[refute_equal].freeze def_node_matcher :equal_floats_call, <<~PATTERN (send nil? :refute_equal $_ $_ $...) PATTERN end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rubocop-minitest-0.20.1 | lib/rubocop/cop/minitest/refute_in_delta.rb |
rubocop-minitest-0.20.0 | lib/rubocop/cop/minitest/refute_in_delta.rb |