Sha256: 1e613581380d1a1ca752fe5fab6d515ed5b94065c73340729f200748cd6158fe
Contents?: true
Size: 1018 Bytes
Versions: 17
Compression:
Stored size: 1018 Bytes
Contents
# encoding: utf-8 # This file is distributed under New Relic's license terms. # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details. class MiddlewareApp < Sinatra::Base get '/middle' do "From the middlewarez" end end class MainApp < Sinatra::Base use MiddlewareApp get '/main' do "mainly done" end end class NestedMiddlewareTest < Minitest::Test include Rack::Test::Methods include MultiverseHelpers def app MainApp end setup_and_teardown_agent def test_inner_transaction get '/main' assert_metrics_recorded(["Controller/Sinatra/MainApp/#{name_for_route('main')}"]) assert_metrics_not_recorded(["Controller/Sinatra/MiddlewareApp/GET (unknown)"]) end def test_outer_transaction get '/middle' assert_metrics_recorded(["Controller/Sinatra/MiddlewareApp/#{name_for_route('middle')}"]) end def name_for_route path if last_request.env.key? 'sinatra.route' "GET /#{path}" else "GET #{path}" end end end
Version data entries
17 entries across 17 versions & 2 rubygems