Sha256: f17b9416e40a7b76b84b47fcc02c6e772798a012f8c51082eeace653a57a34a3
Contents?: true
Size: 943 Bytes
Versions: 13
Compression:
Stored size: 943 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. require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', '..', 'agent_helper')) 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/GET main"]) assert_metrics_not_recorded(["Controller/Sinatra/MiddlewareApp/GET (unknown)"]) end def test_outer_transaction get '/middle' assert_metrics_recorded(["Controller/Sinatra/MiddlewareApp/GET middle"]) end end
Version data entries
13 entries across 13 versions & 1 rubygems