Sha256: 7753bc470eb766e3f583fc7acca9f551ad6fd25d276d0713c57ec849fac57886

Contents?: true

Size: 345 Bytes

Versions: 5

Compression:

Stored size: 345 Bytes

Contents

#!/usr/bin/env rake
require "bundler/gem_tasks"
require 'rake/testtask'

namespace :test do

  Rake::TestTask.new do |t|
    t.name = :unit
    t.libs << "test"
    t.pattern = 'test/unit/**/*_test.rb'
    t.verbose = true
  end
  Rake::Task['test:unit'].comment = "Run the unit tests"

end

task :test    => 'test:unit'
task :default => 'test'

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
exception_handling-2.2.1 Rakefile
exception_handling-1.2.1 Rakefile
exception_handling-1.2.0 Rakefile
exception_handling-1.1.0 Rakefile
exception_handling-1.0.5 Rakefile