Sha256: 9186323558dc1688cc39669a456e97892e1cc8ad4c4725372167a6d377829601

Contents?: true

Size: 581 Bytes

Versions: 3

Compression:

Stored size: 581 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__), '..', '..', '..', 'test_helper'))
class NewRelic::Agent::Instrumentation::InstrumentationTest < MiniTest::Unit::TestCase
  def test_load_all_instrumentation_files
    # just checking for syntax errors and unguarded code
    Dir.glob('new_relic/agent/instrumentation/**/*.rb') do |f|
      require f
    end
    require 'new_relic/delayed_job_injection'
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
newrelic_rpm-3.7.2.195 test/new_relic/agent/instrumentation/instrumentation_test.rb
newrelic_rpm-3.7.2.192 test/new_relic/agent/instrumentation/instrumentation_test.rb
newrelic_rpm-3.7.2.190.beta test/new_relic/agent/instrumentation/instrumentation_test.rb