Sha256: a504b86baad668e6b1566c3dfc2a631494e25a1d32f6dd78f001335bf7fc412e
Contents?: true
Size: 630 Bytes
Versions: 23
Compression:
Stored size: 630 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 "grape" require "newrelic_rpm" require './grape_test_api' class UnsupportedGrapeTest < Minitest::Test include Rack::Test::Methods include MultiverseHelpers if ::Grape::VERSION == '0.1.5' def app GrapeTestApi end def test_unsupported_version get '/grape_ape' get '/grape_ape/1' post '/grape_ape', {} put '/grape_ape/1', {} delete '/grape_ape/1' assert_no_metrics_match(/grape_ape/) end end end
Version data entries
23 entries across 23 versions & 2 rubygems