Skip to content

Files

Latest commit

 

History

History
24 lines (16 loc) · 443 Bytes

Minitest-TestFileName.md

File metadata and controls

24 lines (16 loc) · 443 Bytes

Pattern: Malformed test file name

Issue: -

Description

Checks if test file names start with test_ or end with _test.rb. Files which define classes having names ending with Test are checked. Not following this convention may result in tests not being run.

Examples

# bad
my_class.rb

# good
my_class_test.rb
test_my_class.rb

Further Reading