mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/ruby/enc/test_case_comprehensive.rb:
Remove :lithuanian guard for Unicode case mapping. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55279 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5b65947498
commit
2cd799b967
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun Jun 5 15:24:33 2016 Martin Duerst <duerst@it.aoyama.ac.jp>
|
||||
|
||||
* test/ruby/enc/test_case_comprehensive.rb:
|
||||
Remove :lithuanian guard for Unicode case mapping.
|
||||
|
||||
Sun Jun 5 14:46:34 2016 Martin Duerst <duerst@it.aoyama.ac.jp>
|
||||
|
||||
* string.c: Remove :lithuanian guard for Unicode case mapping.
|
||||
|
|
|
@ -78,9 +78,9 @@ class TestComprehensiveCaseFold < Test::Unit::TestCase
|
|||
end
|
||||
|
||||
tests = [
|
||||
CaseTest.new(:downcase, [:lithuanian], downcase),
|
||||
CaseTest.new(:upcase, [:lithuanian], upcase),
|
||||
CaseTest.new(:capitalize, [:lithuanian], titlecase, downcase),
|
||||
CaseTest.new(:downcase, [], downcase),
|
||||
CaseTest.new(:upcase, [], upcase),
|
||||
CaseTest.new(:capitalize, [], titlecase, downcase),
|
||||
# swapcase?????!!!!!
|
||||
CaseTest.new(:downcase, [:fold], casefold),
|
||||
CaseTest.new(:upcase, [:turkic], turkic_upcase),
|
||||
|
|
Loading…
Reference in a new issue