aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code/getting_started/test/test_helper.rb
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-06-14 16:18:22 +0200
committerYves Senn <yves.senn@gmail.com>2014-06-14 16:20:42 +0200
commit5223bad17c9bb103fa6f558e936cc1303ecee4bf (patch)
treef7849fdfc2944e98babb393ef85d701df09ffa77 /guides/code/getting_started/test/test_helper.rb
parentb31a576a5e1632fdca16c857b965c2d196444e25 (diff)
downloadrails-5223bad17c9bb103fa6f558e936cc1303ecee4bf.tar.gz
rails-5223bad17c9bb103fa6f558e936cc1303ecee4bf.tar.bz2
rails-5223bad17c9bb103fa6f558e936cc1303ecee4bf.zip
docs, remove getting started guide sample application. [ci skip]
This application always gets out of sync and doesn't add much value. Closes #15721 /cc @rafaelfranca
Diffstat (limited to 'guides/code/getting_started/test/test_helper.rb')
-rw-r--r--guides/code/getting_started/test/test_helper.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/guides/code/getting_started/test/test_helper.rb b/guides/code/getting_started/test/test_helper.rb
deleted file mode 100644
index ecbaf77ea7..0000000000
--- a/guides/code/getting_started/test/test_helper.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-ENV["RAILS_ENV"] = "test"
-require File.expand_path('../../config/environment', __FILE__)
-require 'rails/test_help'
-
-class ActiveSupport::TestCase
- ActiveRecord::Migration.check_pending!
-
- # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
- fixtures :all
-
- # Add more helper methods to be used by all tests here...
-end