Sha256: 92b9b7a85ee6d2b7a69770986194e64d26991e9a6d1dacb89f4fece6cdc7c8cf

Contents?: true

Size: 282 Bytes

Versions: 5

Compression:

Stored size: 282 Bytes

Contents

require 'rspec/core/rake_task'

namespace :test do
  RSpec::Core::RakeTask.new(:spec) do |t|
    t.pattern = Dir['spec/**/*_spec.rb'].reject { |f| f['/integration'] }
  end

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
packer-config-1.6.5 tasks/rspec.rake
packer-config-1.6.4 tasks/rspec.rake
packer-config-1.6.3 tasks/rspec.rake
packer-config-1.6.2 tasks/rspec.rake
packer-config-1.6.1 tasks/rspec.rake