repo.or.cz
/
kaya.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
bugfix: safety against breaking the AI if you press undo while it's thinking
[kaya.git]
/
Rakefile
blob
1bfb7f48d1d1f8df8b759abbcd5af71036deb911
1
require 'rake/testtask'
2
3
namespace :test do
4
task :extra do |t|
5
test_files = FileList['test-extra/**/test*.rb']
6
test_files.each do |file|
7
ruby "-Ilib #{file}"
8
end
9
end
10
end
11
12
Rake::TestTask.new(:test => 'test:extra') do |t|
13
t.test_files = FileList['test/**/test*.rb']
14
t.verbose = true
15
end