2017-05-07 12:04:49 +00:00
|
|
|
# -*- encoding: utf-8 -*-
|
2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 12:04:49 +00:00
|
|
|
|
|
|
|
describe "Symbol#downcase" do
|
|
|
|
it "returns a Symbol" do
|
|
|
|
:glark.downcase.should be_an_instance_of(Symbol)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "converts uppercase ASCII characters to their lowercase equivalents" do
|
|
|
|
:lOwEr.downcase.should == :lower
|
|
|
|
end
|
|
|
|
|
|
|
|
it "leaves lowercase Unicode characters as they were" do
|
|
|
|
"\u{E0}Bc".to_sym.downcase.should == :"àbc"
|
|
|
|
end
|
|
|
|
|
2019-04-27 18:53:23 +02:00
|
|
|
it "uncapitalizes all Unicode characters" do
|
|
|
|
"ÄÖÜ".to_sym.downcase.should == :"äöü"
|
|
|
|
"AOU".to_sym.downcase.should == :"aou"
|
2017-10-28 15:15:48 +00:00
|
|
|
end
|
|
|
|
|
2017-05-07 12:04:49 +00:00
|
|
|
it "leaves non-alphabetic ASCII characters as they were" do
|
|
|
|
"Glark?!?".to_sym.downcase.should == :"glark?!?"
|
|
|
|
end
|
|
|
|
end
|