diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2014-08-03 15:12:27 -0700 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2014-08-03 15:12:27 -0700 |
commit | e5632f37f797fd3cc6e2f793d7c73e97a55a8d73 (patch) | |
tree | 2440d67f7b090f67e98b249c22fcde4b66cda130 /railties/lib | |
parent | 206347fd3e33ccf581593a32186e4375639ff43d (diff) | |
download | rails-e5632f37f797fd3cc6e2f793d7c73e97a55a8d73.tar.gz rails-e5632f37f797fd3cc6e2f793d7c73e97a55a8d73.tar.bz2 rails-e5632f37f797fd3cc6e2f793d7c73e97a55a8d73.zip |
A few more tests asserting the presence of helper test stubs
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/generators/rails/controller/USAGE | 1 | ||||
-rw-r--r-- | railties/lib/rails/generators/rails/helper/USAGE | 4 |
2 files changed, 0 insertions, 5 deletions
diff --git a/railties/lib/rails/generators/rails/controller/USAGE b/railties/lib/rails/generators/rails/controller/USAGE index de33900e0a..64239ad599 100644 --- a/railties/lib/rails/generators/rails/controller/USAGE +++ b/railties/lib/rails/generators/rails/controller/USAGE @@ -16,4 +16,3 @@ Example: Test: test/controllers/credit_cards_controller_test.rb Views: app/views/credit_cards/debit.html.erb [...] Helper: app/helpers/credit_cards_helper.rb - Test: test/helpers/credit_cards_helper_test.rb diff --git a/railties/lib/rails/generators/rails/helper/USAGE b/railties/lib/rails/generators/rails/helper/USAGE index 30e323a858..8855ef3b01 100644 --- a/railties/lib/rails/generators/rails/helper/USAGE +++ b/railties/lib/rails/generators/rails/helper/USAGE @@ -5,13 +5,9 @@ Description: To create a helper within a module, specify the helper name as a path like 'parent_module/helper_name'. - This generates a helper class in app/helpers and invokes the configured - test framework. - Example: `rails generate helper CreditCard` Credit card helper. Helper: app/helpers/credit_card_helper.rb - Test: test/helpers/credit_card_helper_test.rb |