Sha256: b1fbbd9c8abec9a08dedf3ba15443a7412f88e63427a9ded4d2db9b6c4b204d3

Contents?: true

Size: 1.21 KB

Versions: 1

Compression:

Stored size: 1.21 KB

Contents

AllCops:
  Include:
    - '**/test/**/*'

Minitest/AssertNil:
  Description: 'Check if your test uses `assert_nil` instead of `assert_equal(nil, something)`.'
  StyleGuide: 'https://github.com/rubocop-hq/minitest-style-guide#assert-nil'
  Enabled: true
  VersionAdded: '0.1'

Minitest/AssertEmpty:
  Description: 'Check if your test uses `assert_empty` instead of `assert(actual.empty?)`.'
  StyleGuide: 'https://github.com/rubocop-hq/minitest-style-guide#assert-empty'
  Enabled: true
  VersionAdded: '0.2'

Minitest/AssertIncludes:
  Description: 'Check if your test uses `assert_includes` instead of `assert(collection.includes?(actual))`.'
  StyleGuide: 'https://github.com/rubocop-hq/minitest-style-guide#assert-includes'
  Enabled: true
  VersionAdded: '0.2'

Minitest/AssertTruthy:
  Description: 'Check if your test uses `assert(actual)` instead of `assert_equal(true, actual)`.'
  StyleGuide: 'https://github.com/rubocop-hq/minitest-style-guide#assert-truthy'
  Enabled: true
  VersionAdded: '0.2'

Minitest/RefuteNil:
  Description: 'Check if your test uses `refute_nil` instead of `refute_equal(nil, something)`.'
  StyleGuide: 'https://github.com/rubocop-hq/minitest-style-guide#refute-nil'
  Enabled: true
  VersionAdded: '0.2'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubocop-minitest-0.2.0 config/default.yml