mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
11 lines
No EOL
209 B
Ruby
11 lines
No EOL
209 B
Ruby
require "rake/testtask"
|
|
require 'backburner/tasks'
|
|
|
|
desc "Run all tests"
|
|
Rake::TestTask.new do |t|
|
|
t.libs << "spec"
|
|
t.test_files = FileList['tests/*_test.rb']
|
|
t.verbose = true
|
|
end
|
|
|
|
task :default => :test |