summaryrefslogtreecommitdiff
path: root/rake_tasks/test.rake
blob: b9cc2a6284408422013672d2d831e41066ed18bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace :test do
	desc 'Test CodeRay Demos'
	task :demos do
		system 'ruby -wd ./demo/suite.rb'
	end

	desc 'Test CodeRay'
	task :scanners do
		system 'ruby -w ./test/suite.rb'
	end

	desc 'Test CodeRay with debugging'
	task :scanners_debug do
		system 'ruby -w -d ./test/suite.rb'
	end
end

task :test => 'test:scanners'
task :debug => 'test:scanners_debug'