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