Sha256: d4bc337e84eed743787ae955581adc9cb876f7b92aa995dd6b43321eed00b300

Contents?: true

Size: 748 Bytes

Versions: 62

Compression:

Stored size: 748 Bytes

Contents

require 'bundler/gem_tasks'
require 'rake/testtask'

desc "Run the unit and functional remote tests"
Rake::TestTask.new(:test) do |t|
  t.libs << "test"
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
  t.warning = false
end

namespace :test do
  desc "Run unit tests"
  Rake::TestTask.new(:unit) do |t|
    t.libs << "test"
    t.pattern = 'test/unit/**/*_test.rb'
    t.verbose = true
    t.warning = false
  end

  desc "Run functional remote tests"
  Rake::TestTask.new(:remote) do |t|
    t.libs << "test"
    t.pattern = 'test/remote/*_test.rb'
    t.verbose = true
    t.warning = false
  end
end

desc "Open a pry session preloaded with this library"
task :console do
  sh 'ruby -Ilib -Itest test/console.rb'
end

task default: 'test'

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-core-3.5.15 vendor/active_shipping/Rakefile
workarea-core-3.4.36 vendor/active_shipping/Rakefile
workarea-core-3.5.14 vendor/active_shipping/Rakefile
workarea-core-3.4.35 vendor/active_shipping/Rakefile
workarea-core-3.5.13 vendor/active_shipping/Rakefile
workarea-core-3.4.34 vendor/active_shipping/Rakefile
workarea-core-3.5.12 vendor/active_shipping/Rakefile
workarea-core-3.4.33 vendor/active_shipping/Rakefile
workarea-core-3.5.11 vendor/active_shipping/Rakefile
workarea-core-3.5.10 vendor/active_shipping/Rakefile
workarea-core-3.4.32 vendor/active_shipping/Rakefile
workarea-core-3.5.9 vendor/active_shipping/Rakefile
workarea-core-3.4.31 vendor/active_shipping/Rakefile
workarea-core-3.5.8 vendor/active_shipping/Rakefile
workarea-core-3.4.30 vendor/active_shipping/Rakefile
workarea-core-3.5.7 vendor/active_shipping/Rakefile
workarea-core-3.4.29 vendor/active_shipping/Rakefile
workarea-core-3.5.6 vendor/active_shipping/Rakefile
workarea-core-3.4.28 vendor/active_shipping/Rakefile
workarea-core-3.5.5 vendor/active_shipping/Rakefile