aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/testing.md
diff options
context:
space:
mode:
authorJon Moss <maclover7@users.noreply.github.com>2017-02-21 21:39:02 -0500
committerGitHub <noreply@github.com>2017-02-21 21:39:02 -0500
commitdf1faf601cb20b5728c95fc10e33b28ae6859bd8 (patch)
tree8afe1ba659adff3b372f64664195b4deceda2ef9 /guides/source/testing.md
parent40b926d5b6172713e787afe1b0ea2f273514f043 (diff)
parent6987c7c763406a38a883e9d8305857fada3b13eb (diff)
downloadrails-df1faf601cb20b5728c95fc10e33b28ae6859bd8.tar.gz
rails-df1faf601cb20b5728c95fc10e33b28ae6859bd8.tar.bz2
rails-df1faf601cb20b5728c95fc10e33b28ae6859bd8.zip
Merge pull request #28103 from y-yagi/remove_needless_extension
remove needless extension from system test example [ci skip]
Diffstat (limited to 'guides/source/testing.md')
-rw-r--r--guides/source/testing.md2
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
```