mirror of
https://github.com/ruby/ruby.git
synced 2025-09-22 03:53:58 +02:00
parent
9ed2cb26de
commit
db154b20cc
2 changed files with 23 additions and 1 deletions
|
@ -156,5 +156,27 @@ module Psych
|
|||
def test_scan_plus_dot
|
||||
assert_equal '+.', ss.tokenize('+.')
|
||||
end
|
||||
|
||||
class MatchCallCounter < String
|
||||
attr_reader :match_call_count
|
||||
|
||||
def match?(pat)
|
||||
@match_call_count ||= 0
|
||||
@match_call_count += 1
|
||||
super
|
||||
end
|
||||
end
|
||||
|
||||
def test_scan_ascii_matches_quickly
|
||||
ascii = MatchCallCounter.new('abcdefghijklmnopqrstuvwxyz')
|
||||
ss.tokenize(ascii)
|
||||
assert_equal 1, ascii.match_call_count
|
||||
end
|
||||
|
||||
def test_scan_unicode_matches_quickly
|
||||
unicode = MatchCallCounter.new('鳥かご関連用品')
|
||||
ss.tokenize(unicode)
|
||||
assert_equal 1, unicode.match_call_count
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue