Sha256: e62626c243959a26c6ddb4569d8ad089619e48268c106c4caa1bcb7e49ea8c3f

Contents?: true

Size: 1.18 KB

Versions: 13

Compression:

Stored size: 1.18 KB

Contents

begin
  require "rspec/core/rake_task"
  desc "Run RSpec code examples"
  RSpec::Core::RakeTask.new(:unit_test) do |t|
    # Glob pattern to match files.
    t.pattern = "spec/unit/**/test_*.rb"

    # Whether or not to fail Rake when an error occurs (typically when 
    # examples fail).
    t.fail_on_error = true

    # A message to print to stderr when there are failures.
    t.failure_message = nil

    # Use verbose output. If this is set to true, the task will print the
    # executed spec command to stdout.
    t.verbose = true

    # Use rcov for code coverage?
    t.rcov = false

    # Path to rcov.
    t.rcov_path = "rcov"

    # Command line options to pass to rcov. See 'rcov --help' about this
    t.rcov_opts = []

    # Command line options to pass to ruby. See 'ruby --help' about this 
    t.ruby_opts = []

    # Path to rspec
    t.rspec_path = "rspec"

    # Command line options to pass to rspec. See 'rspec --help' about this
    t.rspec_opts = ["--color", "--backtrace"]
  end
rescue LoadError => ex
  task :unit_test do
    abort 'rspec is not available. In order to run spec, you must: gem install rspec'
  end
ensure
  task :spec => [:unit_test]
  task :test => [:unit_test]
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
alf-core-0.16.3 tasks/unit_test.rake
alf-core-0.16.2 tasks/unit_test.rake
alf-core-0.16.1 tasks/unit_test.rake
alf-core-0.16.0 tasks/unit_test.rake
alf-core-0.15.0 tasks/unit_test.rake
alf-core-0.14.0 tasks/unit_test.rake
alf-core-0.13.1 tasks/unit_test.rake
alf-core-0.13.0 tasks/unit_test.rake
alf-0.12.2 tasks/unit_test.rake
alf-0.12.1 tasks/unit_test.rake
alf-0.12.0 tasks/unit_test.rake
alf-0.11.1 tasks/unit_test.rake
alf-0.11.0 tasks/unit_test.rake