Stubbing in a new Rails2 app so that I can walk through some of the Rails2 -> Rails3 problems in miniature

This commit is contained in:
Dan Buch
2012-03-03 23:53:30 -05:00
parent 92f8b24f6a
commit 2a3ed69653
47 changed files with 8505 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
require 'test_helper'
require 'performance_test_help'
# Profiling results for each test method are written to tmp/performance.
class BrowsingTest < ActionController::PerformanceTest
def test_homepage
get '/'
end
end