summaryrefslogtreecommitdiff
path: root/test/functional
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2011-09-18 22:24:06 +0200
committerKornelius Kalnbach <murphy@rubychan.de>2011-09-18 22:24:06 +0200
commita6b256219d84022fc518d620b210754b5f8ccce4 (patch)
tree0e99a1016c548e5bba3ffeea0ff327bbde42af76 /test/functional
parent13e31231833ac7236b90a9680fef334c2ed6136d (diff)
downloadcoderay-a6b256219d84022fc518d620b210754b5f8ccce4.tar.gz
#352 CodeRay.scan returns TokensProxy
Diffstat (limited to 'test/functional')
-rwxr-xr-xtest/functional/examples.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/functional/examples.rb b/test/functional/examples.rb
index 44bc47f..d565fcc 100755
--- a/test/functional/examples.rb
+++ b/test/functional/examples.rb
@@ -48,6 +48,8 @@ end
# keep scanned tokens for later use
tokens = CodeRay.scan('{ "just": "an", "example": 42 }', :json)
+ assert_kind_of CodeRay::TokensProxy, tokens
+
assert_equal ["{", :operator, " ", :space, :begin_group, :key,
"\"", :delimiter, "just", :content, "\"", :delimiter,
:end_group, :key, ":", :operator, " ", :space,
@@ -56,8 +58,8 @@ end
" ", :space, :begin_group, :key, "\"", :delimiter,
"example", :content, "\"", :delimiter, :end_group, :key,
":", :operator, " ", :space, "42", :integer,
- " ", :space, "}", :operator], tokens
-
+ " ", :space, "}", :operator], tokens.tokens
+
# produce a token statistic
assert_equal <<-STATISTIC, tokens.statistic
@@ -84,7 +86,7 @@ Token Types (7):
STATISTIC
# count the tokens
- assert_equal 26, tokens.count # => 26
+ assert_equal 26, tokens.count
# produce a HTML div, but with CSS classes
div = tokens.div(:css => :class)