Sha256: 97dce81dc181e19cde934f84e2a527c93a15576100d6dafead39d8bfa37a3f38

Contents?: true

Size: 459 Bytes

Versions: 1

Compression:

Stored size: 459 Bytes

Contents

# A template to simplify running multiple tests for an examples.
# This file is meant to be embedded in another Rakefile.
#--
# Copyright 2006 Suraj N. Kurapati
# See the file named LICENSE for details.

# supress errors about nonexistent tasks
  task :default

  ARGV.each do |t|
    task t
  end

# invoke each test runner with the command-line args
  at_exit do
    FileList['**/*.rake'].each do |runner|
      sh 'rake', '-f', runner, *ARGV
    end
  end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby-vpi-20.0.0 lib/ruby-vpi/runner_proxy.rb