forked from adiwg/mdTranslator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
32 lines (28 loc) · 750 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
require 'bundler/gem_tasks'
require 'rake/testtask'
# Rake::TestTask.new do |t|
# t.libs << 'test'
# t.test_files = FileList[
# 'test/writers/iso19115-2/tc*.rb'
# ]
# t.verbose = true
# end
Rake::TestTask.new do |t|
t.libs << 'test'
t.test_files = FileList[
'test/readers/fgdc/tc*.rb',
'test/readers/mdJson/tc*.rb',
'test/readers/sbJson/tc*.rb',
'test/writers/fgdc/tc*.rb',
'test/writers/html/tc*.rb',
'test/writers/iso19110/tc*.rb',
'test/writers/iso19115-1/tc*.rb',
'test/writers/iso19115-2/tc*.rb',
'test/writers/mdJson/tc*.rb',
'test/writers/sbJson/tc*.rb',
'test/translator/tc*.rb'
]
t.verbose = true
end
desc 'Run tests'
task :default => :test