blob: 20f32d85656e860a8c5d40f91f474f838e82e9c0 (
plain)
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
33
34
35
36
37
38
39
40
41
42
43
|
namespace :test do
desc 'run all sample tests'
task :samples do
ruby "./sample/suite.rb"
end
desc 'run functional tests'
task :functional do
ruby "./test/functional/suite.rb"
end
desc 'run all scanner tests'
task :scanners do
ruby "./test/scanners/suite.rb"
end
desc 'clean test output files'
task :clean do
for file in Dir['test/scanners/**/*.actual.*']
rm file
end
end
desc 'run all tests on all supported Ruby platforms'
task :all do
$stdout.sync = true
for task in %w(test 19 test jruby test ee test)
if task == 'test'
puts "\n\nTesting with #{RUBY}..."
Rake::Task['test'].reenable
Rake::Task['test:functional'].reenable
Rake::Task['test:scanners'].reenable
Rake::Task['test'].invoke
else
Rake::Task[task].invoke
end
end
end
end
task :test => %w( test:functional test:scanners )
task :samples => 'test:samples'
|