summaryrefslogtreecommitdiff
path: root/rake_tasks/test.rake
blob: 0808edbf816d46f1fc1743d1fef345861d5a6fca (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 -w ./test/suite.rb'
  end
end

task :test => 'test:scanners'
task :demos => 'test:demos'