aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/test_unit/mailer/templates/functional_test.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2011-04-23 13:22:15 +0200
committerDavid Heinemeier Hansson <david@loudthinking.com>2011-04-23 13:22:30 +0200
commit8d7efe6a4e25b8707d46006cf20f6ce499e83780 (patch)
tree188e05d5d5befa0f66b966d35f2601ed6c7b6279 /railties/lib/rails/generators/test_unit/mailer/templates/functional_test.rb
parentaf1b48926f49226c934995c322ee017239158cf3 (diff)
downloadrails-8d7efe6a4e25b8707d46006cf20f6ce499e83780.tar.gz
rails-8d7efe6a4e25b8707d46006cf20f6ce499e83780.tar.bz2
rails-8d7efe6a4e25b8707d46006cf20f6ce499e83780.zip
Stop adding actual dummy tests (they clutter up the real ones in a new app), just show how its done
Diffstat (limited to 'railties/lib/rails/generators/test_unit/mailer/templates/functional_test.rb')
-rw-r--r--railties/lib/rails/generators/test_unit/mailer/templates/functional_test.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/railties/lib/rails/generators/test_unit/mailer/templates/functional_test.rb b/railties/lib/rails/generators/test_unit/mailer/templates/functional_test.rb
index b62c7fd279..c05102290c 100644
--- a/railties/lib/rails/generators/test_unit/mailer/templates/functional_test.rb
+++ b/railties/lib/rails/generators/test_unit/mailer/templates/functional_test.rb
@@ -13,10 +13,9 @@ class <%= class_name %>Test < ActionMailer::TestCase
<% end -%>
<% if actions.blank? -%>
- # replace this with your real tests
- test "the truth" do
- assert true
- end
+ # test "the truth" do
+ # assert true
+ # end
<% end -%>
end
<% end -%>