Sha256: 00c4691a106cbe24e808724ed7cc24ac589b84204573292541f70bcd9da06512

Contents?: true

Size: 505 Bytes

Versions: 4

Compression:

Stored size: 505 Bytes

Contents

#
# Tests
#

namespace :deployinator do
  namespace :test do

    desc 'Run deployinator unit tests'
    Rake::TestTask.new :unit do |t|
      t.libs << 'lib'
      t.pattern = "#{File.dirname(__FILE__)}/../../../test/unit/**/*_test.rb"
      t.verbose = false
    end

    desc 'Run deployinator functional tests'
    Rake::TestTask.new :functional do |t|
      t.libs << 'lib'
      t.pattern = "#{File.dirname(__FILE__)}/../../../test/functional/**/*_test.rb"
      t.verbose = false
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
etsy-deployinator-1.1.1 lib/deployinator/tasks/tests.rake
etsy-deployinator-1.1.0 lib/deployinator/tasks/tests.rake
etsy-deployinator-1.0.2 lib/deployinator/tasks/tests.rake
etsy-deployinator-1.0.1 lib/deployinator/tasks/tests.rake