summaryrefslogtreecommitdiff
path: root/test/functional/basic.rb
diff options
context:
space:
mode:
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