Commit 7a57eb71 by Mark Wunsch

Add remaining People names, and infer names from symbol

parent 07f1a2ab
...@@ -18,6 +18,15 @@ describe Rumoji::Emoji do ...@@ -18,6 +18,15 @@ describe Rumoji::Emoji do
it("converts to the emoji string") { subject.to_s.must_equal poo_string } it("converts to the emoji string") { subject.to_s.must_equal poo_string }
it("converts to a hex code") { subject.hex.must_equal "1F4A9" } it("converts to a hex code") { subject.hex.must_equal "1F4A9" }
describe "inferring the name" do
let (:symbol) { :person_with_pouting_face }
subject do
Rumoji::Emoji.new("\u{1F64E}", symbol)
end
it("infers the name from the symbol") { subject.name.must_equal "PERSON WITH POUTING FACE" }
end
describe "with multiple codepoints" do describe "with multiple codepoints" do
# From the Unicode 6.2.0 standard: # From the Unicode 6.2.0 standard:
# The regional indicator symbols in the range # The regional indicator symbols in the range
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment