summaryrefslogtreecommitdiff
path: root/rake_tasks
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2009-12-31 02:56:55 +0000
committermurphy <murphy@rubychan.de>2009-12-31 02:56:55 +0000
commit46b83c9c5384a299cdc8d8c5381259b1f6d0e4aa (patch)
treee2930e60c4324f7a17f923ba68c15a6bab5d5576 /rake_tasks
parent77fc494cbdbde2719875fb0d7caf2454ef298fca (diff)
downloadcoderay-46b83c9c5384a299cdc8d8c5381259b1f6d0e4aa.tar.gz
Fixed example tests.
* test:clean task also deletes .expected.html files * LinesOfCode encoder can deal with tokens that have no scanner. Tests were added for this. * JSON encoder load rubygems if necessary. * NEW :loc as an alias for :lines_of_code * NEW Scanner methods marshal_dump, marshal_load FIXED Tokens dumping (failed while trying to dump @scanner)
Diffstat (limited to 'rake_tasks')
-rw-r--r--rake_tasks/test.rake5
1 files changed, 4 insertions, 1 deletions
diff --git a/rake_tasks/test.rake b/rake_tasks/test.rake
index f9619c7..bb22f36 100644
--- a/rake_tasks/test.rake
+++ b/rake_tasks/test.rake
@@ -46,6 +46,9 @@ namespace :test do
for file in Dir['test/scanners/**/*.actual.*']
rm file
end
+ for file in Dir['test/scanners/**/*.expected.html']
+ rm file
+ end
end
desc 'run all tests on all supported Ruby platforms'
@@ -68,4 +71,4 @@ namespace :test do
end
task :test => %w( test:functional test:scanners )
-task :samples => 'test:samples'
+task :samples => 'test:samples' \ No newline at end of file