summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2005-11-04 01:39:22 +0000
committermurphy <murphy@rubychan.de>2005-11-04 01:39:22 +0000
commitfdd7eab11ddbe99a772930fb6af2586f8021f276 (patch)
tree78873e6670c485653b177e2e29e65520e30b0ed4 /Rakefile
parente6db7937334ab025b41e7b5cc3729e2c04ab4464 (diff)
downloadcoderay-fdd7eab11ddbe99a772930fb6af2586f8021f276.tar.gz
Finally: Demo Tests!
Added demo/suite.rb, demo/*.out files Rakefile adjusted TODO updated
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index d14cf54..87715c1 100644
--- a/Rakefile
+++ b/Rakefile
@@ -44,11 +44,26 @@ task :stats => :copy_files do
).to_s
end
+desc 'Test CodeRay Demos'
+task :test_demos do
+ system 'ruby -w ./demo/suite.rb'
+end
+
desc 'Test CodeRay'
task :test do
system 'ruby -w ./test/suite.rb'
end
+desc 'Test CodeRay Demos with Fox'
+task :testf_demos do
+ system 'ruby -w ./demo/suite.rb -f'
+end
+
+desc 'Test CodeRay with Fox'
+task :testf do
+ system 'ruby -w ./test/suite.rb -f'
+end
+
desc 'Test CodeRay with debugging'
task :debug do
system 'ruby -w -d ./test/suite.rb'