diff options
author | murphy <murphy@rubychan.de> | 2006-04-04 13:23:02 +0000 |
---|---|---|
committer | murphy <murphy@rubychan.de> | 2006-04-04 13:23:02 +0000 |
commit | 132b75e58dba4c93278721d60f177cfbee7d0e46 (patch) | |
tree | d4491961c01b9c9b91e7d3c25fefa4a4b5c5c5de /test/html/suite.rb | |
parent | 0d919d07f67166981cea476e1febbc40af2eae9c (diff) | |
download | coderay-132b75e58dba4c93278721d60f177cfbee7d0e46.tar.gz |
Added HTML scanner!
Added test/html/suite.rb and tolkien.in.html test.
Benchmark produces inline line numbers now.
Minor changes to Ruby and C scanners.
Rakefile: unit tests now in -d mode.
Diffstat (limited to 'test/html/suite.rb')
-rw-r--r-- | test/html/suite.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/html/suite.rb b/test/html/suite.rb new file mode 100644 index 0000000..bff8c83 --- /dev/null +++ b/test/html/suite.rb @@ -0,0 +1,9 @@ +class HTMLTest < CodeRaySuite
+
+ @file = __FILE__
+ LANG = :html
+ EXTENSION = 'html'
+
+end
+
+$suite << HTMLTest.suite if $suite
|