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.27 vendor/active_shipping/Rakefile
workarea-core-3.5.26 vendor/active_shipping/Rakefile
workarea-core-3.4.45 vendor/active_shipping/Rakefile
workarea-core-3.5.25 vendor/active_shipping/Rakefile
workarea-core-3.5.23 vendor/active_shipping/Rakefile
workarea-core-3.4.44 vendor/active_shipping/Rakefile
workarea-core-3.5.22 vendor/active_shipping/Rakefile
workarea-core-3.4.43 vendor/active_shipping/Rakefile
workarea-core-3.5.21 vendor/active_shipping/Rakefile
workarea-core-3.4.42 vendor/active_shipping/Rakefile
workarea-core-3.5.20 vendor/active_shipping/Rakefile
workarea-core-3.4.41 vendor/active_shipping/Rakefile
workarea-core-3.5.19 vendor/active_shipping/Rakefile
workarea-core-3.4.40 vendor/active_shipping/Rakefile
workarea-core-3.5.18 vendor/active_shipping/Rakefile
workarea-core-3.4.39 vendor/active_shipping/Rakefile
workarea-core-3.5.17 vendor/active_shipping/Rakefile
workarea-core-3.4.38 vendor/active_shipping/Rakefile
workarea-core-3.5.16 vendor/active_shipping/Rakefile
workarea-core-3.4.37 vendor/active_shipping/Rakefile