Skip to content

Files

Latest commit

 

History

History
29 lines (20 loc) · 290 Bytes

Minitest-SkipWithoutReason.md

File metadata and controls

29 lines (20 loc) · 290 Bytes

Pattern: Skipped test without reason

Issue: -

Description

Checks for skipped tests missing the skipping reason.

Examples

# bad
skip
skip('')

# bad
if condition?
  skip
else
  skip
end

# good
skip("Reason why the test was skipped")

# good
skip if condition?