aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/code/getting_started/test/test_helper.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2011-09-12 07:49:36 -0700
committerXavier Noria <fxn@hashref.com>2011-09-12 07:49:36 -0700
commit63082af306b3da34a5c888d19eef7314a4ef06e6 (patch)
tree903afe48e0393578c54b42d050a85f8770e93121 /railties/guides/code/getting_started/test/test_helper.rb
parent4bcacc80667a548664b5ca09d85074c6c383748e (diff)
parentd7154d483269fc25d771d5b8b7b8a2c889e4b3f5 (diff)
downloadrails-63082af306b3da34a5c888d19eef7314a4ef06e6.tar.gz
rails-63082af306b3da34a5c888d19eef7314a4ef06e6.tar.bz2
rails-63082af306b3da34a5c888d19eef7314a4ef06e6.zip
Merge pull request #2984 from jrgifford/master
Added getting_started application to railties/guides/code/getting_started
Diffstat (limited to 'railties/guides/code/getting_started/test/test_helper.rb')
-rw-r--r--railties/guides/code/getting_started/test/test_helper.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/railties/guides/code/getting_started/test/test_helper.rb b/railties/guides/code/getting_started/test/test_helper.rb
new file mode 100644
index 0000000000..8bf1192ffe
--- /dev/null
+++ b/railties/guides/code/getting_started/test/test_helper.rb
@@ -0,0 +1,13 @@
+ENV["RAILS_ENV"] = "test"
+require File.expand_path('../../config/environment', __FILE__)
+require 'rails/test_help'
+
+class ActiveSupport::TestCase
+ # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
+ #
+ # Note: You'll currently still have to declare fixtures explicitly in integration tests
+ # -- they do not yet inherit this setting
+ fixtures :all
+
+ # Add more helper methods to be used by all tests here...
+end