summaryrefslogtreecommitdiff
path: root/test/functional
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional')
-rwxr-xr-xtest/functional/basic.rb4
-rwxr-xr-xtest/functional/suite.rb1
2 files changed, 4 insertions, 1 deletions
diff --git a/test/functional/basic.rb b/test/functional/basic.rb
index 5d03513..bf289b3 100755
--- a/test/functional/basic.rb
+++ b/test/functional/basic.rb
@@ -148,7 +148,9 @@ more code # and another comment, in-line.
end
end
assert_equal 'reserved', CodeRay::TokenKinds[:reserved]
- assert_equal false, CodeRay::TokenKinds[:shibboleet]
+ assert_warning 'Undefined Token kind: :shibboleet' do
+ assert_equal false, CodeRay::TokenKinds[:shibboleet]
+ end
end
class Milk < CodeRay::Encoders::Encoder
diff --git a/test/functional/suite.rb b/test/functional/suite.rb
index 5490f98..ec23eec 100755
--- a/test/functional/suite.rb
+++ b/test/functional/suite.rb
@@ -1,5 +1,6 @@
require 'test/unit'
+$VERBOSE = $CODERAY_DEBUG = true
$:.unshift File.expand_path('../../../lib', __FILE__)
require 'coderay'