summaryrefslogtreecommitdiff
path: root/test/functional/basic.rb
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2006-10-20 07:06:40 +0000
committermurphy <murphy@rubychan.de>2006-10-20 07:06:40 +0000
commit95a9f131d9359258f0eda8371b7d0373c3ef0b21 (patch)
tree3bb4f31816f06767d263870f9f04922e668f6ad4 /test/functional/basic.rb
parentb29f1786692e0416a6dc71474859f60af471ed42 (diff)
downloadcoderay-95a9f131d9359258f0eda8371b7d0373c3ef0b21.tar.gz
Added WordList tests. Renamed Basic to BasicTest.
Diffstat (limited to 'test/functional/basic.rb')
-rwxr-xr-xtest/functional/basic.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/basic.rb b/test/functional/basic.rb
index a00e4ae..2da85e6 100755
--- a/test/functional/basic.rb
+++ b/test/functional/basic.rb
@@ -1,8 +1,7 @@
require "test/unit"
-
require "coderay"
-class Basic < Test::Unit::TestCase
+class BasicTest < Test::Unit::TestCase
def test_version
assert_nothing_raised do
CodeRay::VERSION
@@ -36,9 +35,10 @@ class Basic < Test::Unit::TestCase
end
SCANNERS_LIST = %w(
- c delphi html nitro_xhtml plaintext rhtml ruby xml
+ c debug delphi html nitro_xhtml plaintext rhtml ruby xml
)
def test_list_of_scanners
assert_equal(SCANNERS_LIST, CodeRay::Scanners.list.sort)
end
-end \ No newline at end of file
+
+end