Sha256: a8d093c658bc58aa6aafeb0c92a7db986a3500312bd3aedef0bf33a120cd35b8
Contents?: true
Size: 547 Bytes
Versions: 79
Compression:
Stored size: 547 Bytes
Contents
# run unit tests for the NewRelic Agent begin require 'rake/test_task' rescue LoadError => e end if defined? Rake::TestTask namespace :test do AGENT_HOME = File.expand_path(File.join(File.dirname(__FILE__), "..","..")) Rake::TestTask.new(:newrelic) do |t| t.libs << "#{AGENT_HOME}/test" t.libs << "#{AGENT_HOME}/lib" t.pattern = "#{AGENT_HOME}/test/**/*_test.rb" t.verbose = true end Rake::Task['test:newrelic'].comment = "Run the unit tests for the Agent" task :newrelic => :environment end end
Version data entries
79 entries across 79 versions & 4 rubygems