Sha256: 026f2c35dcf53ab831bf2291a3cfaac9535967ee8f7122ad8f2043d706144452

Contents?: true

Size: 663 Bytes

Versions: 3

Compression:

Stored size: 663 Bytes

Contents

require 'rake/testtask'
require 'bundler'
require 'bundler/gem_tasks'

Bundler::GemHelper.install_tasks

Rake::TestTask.new('unit') do |t|
  t.libs << 'lib'
  t.libs << 'spec'
  t.test_files = FileList['spec/unit/**/*_spec.rb']
  t.verbose = true
end

Rake::TestTask.new('integration') do |t|
  t.libs << 'lib'
  t.libs << 'spec'
  t.test_files = FileList['spec/integration/**/*_spec.rb']
  t.verbose = true
  end

Rake::TestTask.new('dev') do |t|
  t.libs << 'lib'
  t.libs << 'spec'
  t.test_files = FileList[
    'spec/test_helper.rb',
  #  Add file to test individually
  ]
  t.verbose = true
end

task :specs => [:unit, :integration]
task :default => :specs

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
lhm-shopify-3.5.3 Rakefile
lhm-shopify-3.5.2 Rakefile
lhm-shopify-3.5.0 Rakefile