summaryrefslogtreecommitdiff
path: root/rake_tasks/test.rake
blob: 18e10d7a6ceb196cbce547b516815267b78456c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 -wd ./test/scanners/suite.rb'
  end
end

task :test => %w( test:scanners )
task :demos => 'test:demos'