aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-02-22 11:01:13 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-02-22 11:01:13 +0900
commit6987c7c763406a38a883e9d8305857fada3b13eb (patch)
tree8afe1ba659adff3b372f64664195b4deceda2ef9 /guides
parent40b926d5b6172713e787afe1b0ea2f273514f043 (diff)
downloadrails-6987c7c763406a38a883e9d8305857fada3b13eb.tar.gz
rails-6987c7c763406a38a883e9d8305857fada3b13eb.tar.bz2
rails-6987c7c763406a38a883e9d8305857fada3b13eb.zip
remove needless extension from system test example [ci skip]
Diffstat (limited to 'guides')
-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
```