browsing_test.rb 447 B

1234567891011121314
  1. # Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
  2. require 'test_helper'
  3. require 'rails/performance_test_help'
  4. class BrowsingTest < ActionDispatch::PerformanceTest
  5. # Refer to the documentation for all available options
  6. # self.profile_options = { :runs => 5, :metrics => [:wall_time, :memory]
  7. # :output => 'tmp/performance', :formats => [:flat] }
  8. def test_homepage
  9. get '/'
  10. end
  11. end