Sha256: 2337e54b875fbac11577aa526221db58d113bda802882a3a22f233bd2e1bd93f

Contents?: true

Size: 386 Bytes

Versions: 1

Compression:

Stored size: 386 Bytes

Contents

require "rspec/core/rake_task"

desc "Run the unit specs"
task :default => "spec:unit"

namespace :spec do
  RSpec::Core::RakeTask.new(:unit) do |t|
    t.pattern = "spec/unit/**/*_spec.rb"
  end

  RSpec::Core::RakeTask.new(:acceptance) do |t|
    t.pattern = "spec/acceptance/**/*_spec.rb"
  end

  desc "all tests"
  task :all => %w[ spec:unit spec:acceptance ]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
minilab-2.0.1-x86-mingw32 Rakefile