aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2013-01-10 08:10:22 -0800
committerGuillermo Iguaran <guilleiguaran@gmail.com>2013-01-10 08:10:22 -0800
commit416a179ddf5cf3c328b5c91163ec89334aab0b4f (patch)
tree36132829e7350b7770c881eb9bb6a3ac4d3b3606 /guides/code
parent2b5019e234b89a201e11ade6e280f3fc0e64f577 (diff)
parent5ca7ddcb490662b6d4eaa66d244ba2f5705c7428 (diff)
downloadrails-416a179ddf5cf3c328b5c91163ec89334aab0b4f.tar.gz
rails-416a179ddf5cf3c328b5c91163ec89334aab0b4f.tar.bz2
rails-416a179ddf5cf3c328b5c91163ec89334aab0b4f.zip
Merge pull request #8876 from senny/extract_performance_tests
Extract ActionDispatch::PerformanceTest
Diffstat (limited to 'guides/code')
-rw-r--r--guides/code/getting_started/README.rdoc2
-rw-r--r--guides/code/getting_started/test/performance/browsing_test.rb12
2 files changed, 1 insertions, 13 deletions
diff --git a/guides/code/getting_started/README.rdoc b/guides/code/getting_started/README.rdoc
index 8d1b0f42e5..232856ca5f 100644
--- a/guides/code/getting_started/README.rdoc
+++ b/guides/code/getting_started/README.rdoc
@@ -25,4 +25,4 @@ Things you may want to cover:
If you plan to generate application documentation with `rake doc:app` this file
is expected to be `README.rdoc`, otherwise please feel free to rename it and use
-a different markup language.
+a different markup language. \ No newline at end of file
diff --git a/guides/code/getting_started/test/performance/browsing_test.rb b/guides/code/getting_started/test/performance/browsing_test.rb
deleted file mode 100644
index 9342a57b20..0000000000
--- a/guides/code/getting_started/test/performance/browsing_test.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-require 'test_helper'
-require 'rails/performance_test_help'
-
-class BrowsingTest < ActionDispatch::PerformanceTest
- # Refer to the documentation for all available options
- # self.profile_options = { runs: 5, metrics: [:wall_time, :memory],
- # output: 'tmp/performance', formats: [:flat] }
-
- def test_homepage
- get '/'
- end
-end