summaryrefslogtreecommitdiff
path: root/Rakefile
blob: f87faaceddb16c7b009f5869a0906afa42e6b88c (plain)
1
2
3
4
5
6
7
8
9
require 'rake/testtask'

# TODO: How to run only a specific test?
Rake::TestTask.new do |t|
  t.libs << 'test'
  t.test_files = FileList['test/**/*_test.rb']
end

task default: :test