Sha256: 918ebe6d04b850cfb0608d263cb994063898e7c6914c95e5272082a67372b074

Contents?: true

Size: 349 Bytes

Versions: 22

Compression:

Stored size: 349 Bytes

Contents

require 'rake'
require 'rake/testtask'

task :default => :test

def test_task(name, pattern)
  Rake::TestTask.new(name) do |t|
    ENV['TESTOPTS'] = '--runner=s'

    t.libs << 'lib'
    t.pattern = pattern
    t.verbose = true
  end
end

test_task(:test, "test/*_test.rb")
namespace(:test) { test_task(:integration, "test/integration/*_test.rb") }

Version data entries

22 entries across 22 versions & 5 rubygems

Version Path
dreamcat4-braid-0.5.1 Rakefile
dreamcat4-braid-0.5.2 Rakefile
dreamcat4-braid-0.50 Rakefile
dreamcat4-braid-0.52 Rakefile
dreamcat4-braid-0.53 Rakefile
dreamcat4-braid-0.531 Rakefile
dreamcat4-braid-0.533 Rakefile
dreamcat4-braid-0.534 Rakefile
evilchelu-braid-0.4.10 Rakefile
evilchelu-braid-0.4.11 Rakefile
evilchelu-braid-0.4.12 Rakefile
evilchelu-braid-0.4.13 Rakefile
evilchelu-braid-0.5 Rakefile
mlightner-braid-0.5.1 Rakefile
norbert-braid-0.4.12 Rakefile
norbert-braid-0.4.13 Rakefile
norbert-braid-0.4.9 Rakefile
norbert-braid-0.5.1 Rakefile
braid-0.6.2 Rakefile
braid-0.6.1 Rakefile