forked from HeroInt/ruby-api-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
24 lines (21 loc) · 641 Bytes
/
Rakefile
File metadata and controls
24 lines (21 loc) · 641 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#######################################################################
#
# Kayako Ruby REST API library
# _____________________________________________________________________
#
# @author Andriy Lesyuk
#
# @package KayakoClient
# @copyright Copyright (c) 2011-2015, Kayako
# @license FreeBSD
# @link https://github.com/kayako/ruby-api-library
#
#######################################################################
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
test.libs << 'test'
test.pattern = 'test/**/test_*.rb'
test.verbose = true
test.warning = true
end
task :default => :test