mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 14:26:45 -06:00
should address #52 includes better error handling if a nonexistent cask is referenced first test-driven commit, suckas!
8 lines
132 B
Ruby
8 lines
132 B
Ruby
require 'rake/testtask'
|
|
|
|
Rake::TestTask.new do |t|
|
|
t.pattern = "test/**/*_test.rb"
|
|
t.libs << 'test'
|
|
end
|
|
|
|
task :default => :test
|