You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Future you or other developers will have a hard time figuring out why it was skipped. So I suggest to enforce skip messages. Unless it is in condition already.
Example
# badskip# goodskip("Is not supported by Active Record < 7")# also goodskipifactive_record_below_7?
The text was updated successfully, but these errors were encountered:
Inspired by - https://hexdocs.pm/credo/Credo.Check.Design.SkipTestWithoutComment.html.
It is possible to
skip
a test without providing a reason why - https://github.com/minitest/minitest/blob/ed224bc9983eab31cbb4859f655daeec903da046/lib/minitest/assertions.rb#L783Future you or other developers will have a hard time figuring out why it was skipped. So I suggest to enforce
skip
messages. Unless it is in condition already.Example
The text was updated successfully, but these errors were encountered: