2017-05-07 08:04:49 -04:00
|
|
|
# -*- encoding: utf-8 -*-
|
2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
describe "Symbol#upcase" do
|
|
|
|
it "returns a Symbol" do
|
|
|
|
:glark.upcase.should be_an_instance_of(Symbol)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "converts lowercase ASCII characters to their uppercase equivalents" do
|
|
|
|
:lOwEr.upcase.should == :LOWER
|
|
|
|
end
|
|
|
|
|
2019-04-27 12:53:23 -04:00
|
|
|
it "capitalizes all Unicode characters" do
|
|
|
|
"äöü".to_sym.upcase.should == :"ÄÖÜ"
|
|
|
|
"aou".to_sym.upcase.should == :"AOU"
|
2017-10-28 11:15:48 -04:00
|
|
|
end
|
|
|
|
|
2017-05-07 08:04:49 -04:00
|
|
|
it "leaves non-alphabetic ASCII characters as they were" do
|
|
|
|
"Glark?!?".to_sym.upcase.should == :"GLARK?!?"
|
|
|
|
end
|
|
|
|
end
|