aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-03-25 23:45:28 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-03-25 23:45:28 +0000
commitc3c39b5cb6756e68f6e84cb17bb691a2af7fea28 (patch)
tree6be21f3d61df36f930bc3037969a9f5567823650 /railties
parent0a5b8328b92f9a9cbb7e59d2a8c89cf22435b1f4 (diff)
downloadrails-c3c39b5cb6756e68f6e84cb17bb691a2af7fea28.tar.gz
rails-c3c39b5cb6756e68f6e84cb17bb691a2af7fea28.tar.bz2
rails-c3c39b5cb6756e68f6e84cb17bb691a2af7fea28.zip
Beef up the default test just a tad
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4035 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb b/railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb
index 5f9bd829e0..61688aee4e 100644
--- a/railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb
+++ b/railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb
@@ -1,4 +1,10 @@
require "#{File.dirname(__FILE__)}<%= '/..' * class_nesting_depth %>/../test_helper"
class <%= class_name %>Test < ActionController::IntegrationTest
+ # fixtures :your, :models
+
+ # Replace this with your real tests.
+ def test_truth
+ assert true
+ end
end