repo.or.cz
/
lwes-ruby.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
extra test for type_db and empty structs
[lwes-ruby.git]
/
Rakefile
blob
31a3e2a6452b01b1453c59d6cd5c9f90802bbf2c
1
require 'rake/testtask'
2
3
desc "run all tests"
4
task :test => %w(test:unit)
5
6
desc "run unit tests"
7
Rake::TestTask.new('test:unit') do |t|
8
t.libs << "ext/lwes"
9
t.test_files = FileList['test/unit/test_*.rb']
10
t.verbose = true if ENV["VERBOSE"].to_i > 0
11
end