diff options
-rw-r--r-- | guides/source/testing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index 2a474507e6..652030a733 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -610,7 +610,7 @@ For creating Rails system tests, you use the `test/system` directory in your application. Rails provides a generator to create a system test skeleton for you. ```bash -$ bin/rails generate system_test users_create_test.rb +$ bin/rails generate system_test users_create_test invoke test_unit create test/system/users_create_test.rb ``` |