Sha256: 06775230d94bbccda70a3807332ccd538310edd14de3fb7f35a8f6ce98a710e4
Contents?: true
Size: 502 Bytes
Versions: 8
Compression:
Stored size: 502 Bytes
Contents
require 'rake/testtask.rb' require File.join(File.dirname(__FILE__),'lib','multiverse','color') desc "Test the testing framework by executing tests in /test. Get meta with it." task "test:self" do extend Multiverse::Color puts yellow("Testing the multiverse testing framework...") test_files = FileList['test/*_test.rb'] ruby test_files.join(" ") end desc "Test the agent. Run all suites in /suites to test." task "test" do ruby 'script/runner' end task 'default' => ['test:self', 'test']
Version data entries
8 entries across 8 versions & 2 rubygems