Add "Assert Nil" rule by koic · Pull Request #2 · rubocop/minitest-style-guide

Use assert_nil if expecting nil. # bad assert_equal(nil, actual) # good assert_nil(actual) This rule prevents the following MT6's deprecated warning: class ExampleTest < Minitest::Test de...