Sha256: c5bf9e376b397f83a4f02b53b710503c352e663f13f17583e1c03baf9df36b82
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 `assert_in_delta` # instead of using `assert_equal` to compare floats. # # @example # # bad # assert_equal(0.2, actual) # assert_equal(0.2, actual, 'message') # # # good # assert_in_delta(0.2, actual) # assert_in_delta(0.2, actual, 0.001, 'message') # class AssertInDelta < Base include InDeltaMixin extend AutoCorrector RESTRICT_ON_SEND = %i[assert_equal].freeze def_node_matcher :equal_floats_call, <<~PATTERN (send nil? :assert_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/assert_in_delta.rb |
rubocop-minitest-0.20.0 | lib/rubocop/cop/minitest/assert_in_delta.rb |