mirror of
https://github.com/retailcrm/api-client-ruby.git
synced 2024-11-21 20:46:04 +03:00
13 lines
216 B
Ruby
13 lines
216 B
Ruby
# encoding: utf-8
|
|
|
|
require 'rake/testtask'
|
|
|
|
Rake::TestTask.new do |t|
|
|
t.libs.push "lib"
|
|
t.test_files = FileList['test/test_*.rb', 'test/spec_*.rb']
|
|
t.verbose = true
|
|
end
|
|
|
|
desc "Run tests"
|
|
task :default => :test
|