mirror of
https://github.com/zhigang1992/fir-cli.git
synced 2026-04-26 06:14:58 +08:00
11 lines
234 B
Ruby
11 lines
234 B
Ruby
require 'bundler/gem_tasks'
|
|
require File.expand_path('../test/test_helper', __FILE__)
|
|
|
|
desc 'Run the tests.'
|
|
task :test do
|
|
$LOAD_PATH << 'lib' << 'test'
|
|
Dir['test/*_test.rb'].each { |f| require f[5..-4] }
|
|
end
|
|
|
|
task default: :test
|