notebook/test/performance/browsing_test.rb
2015-03-27 23:44:15 -05:00

13 lines
404 B
Ruby

require 'test_helper'
require 'rails/performance_test_help'
# Tests performance by browsing the site
# Refer to the documentation for all available options
# self.profile_options = { :runs => 5, :metrics => [:wall_time, :memory]
# :output => 'tmp/performance', :formats => [:flat] }
class BrowsingTest < ActionDispatch::PerformanceTest
def test_homepage
get '/'
end
end