From b76d18d27783ad2079e1e75773ef9d1e30005fdd Mon Sep 17 00:00:00 2001 From: Fuyutsubaki Date: Fri, 31 Oct 2025 21:44:11 +0900 Subject: [PATCH] Fixed inconsistency between description and example in 'Running tests' section (#5802) Expand test run examples to show running a specific line number or a matching regex. [ci skip] --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6521e241..bb2dc697 100644 --- a/README.md +++ b/README.md @@ -163,9 +163,10 @@ bin/test bin/test test/models/trackable_test.rb ``` -* Running a specific test given a regex: +* Running a specific test given a line number or a regex: ```bash bin/test test/models/trackable_test.rb:16 +bin/test test/models/trackable_test.rb -n '/update.*record/' ``` ## Starting with Rails?