Sha256: aa9173007cae44bea46ccb3f8c8ac07dab51f78c6ae508f6103f2945234d839b
Contents?: true
Size: 504 Bytes
Versions: 6
Compression:
Stored size: 504 Bytes
Contents
#!/usr/bin/env rake require "bundler/gem_tasks" require "rake/testtask" namespace :test do desc "Test the basics of the adapter" Rake::TestTask.new(:units) do |t| t.libs << "lib/raygun" t.test_files = FileList["test/unit/*_test.rb"] t.verbose = true end desc "Run a test against the live API" Rake::TestTask.new(:integration) do |t| t.libs << "lib/raygun" t.test_files = FileList["test/integration/*_test.rb"] t.verbose = true end end task default: "test:units"
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
raygun4ruby-1.1.9 | Rakefile |
raygun4ruby-1.1.8 | Rakefile |
raygun4ruby-1.1.6 | Rakefile |
raygun4ruby-1.1.5 | Rakefile |
raygun4ruby-1.1.4 | Rakefile |
raygun4ruby-1.1.3 | Rakefile |