Sha256: fbe0b722927e0eed3330fc781d23dab7fad7262473086d9746c900a67537affa
Contents?: true
Size: 452 Bytes
Versions: 8
Compression:
Stored size: 452 Bytes
Contents
# run unit tests for the NewRelic Agent 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" end end
Version data entries
8 entries across 8 versions & 2 rubygems