Sha256: 5eb46786b3bcc99ca4cd4ffff8a7ad579f50e8eaa03e193a7e1d81433cbea386
Contents?: true
Size: 1.52 KB
Versions: 17
Compression:
Stored size: 1.52 KB
Contents
# encoding: UTF-8 # Copyright 2012 Twitter, Inc # http://www.apache.org/licenses/LICENSE-2.0 require 'spec_helper' include TwitterCldr::Shared TEST_COUNTRIES = ["Australia", "Thailand", "Russia", "China", "Japan", "Peru", "South Africa", "India", "South Korea", "United Kingdom"] TEST_CODES = %w[AUD THB RUB CNY JPY PEN ZAR INR KRW GBP] describe Currencies do describe "#currency_codes" do it "should list all supported country codes" do codes = Currencies.currency_codes expect(codes.size).to eq(297) expect(codes).to include(*TEST_CODES) end end describe "#for_code" do it "should return all information for PEN" do data = Currencies.for_code("PEN") expect(data).to be_a(Hash) expect(data).to include( :name => "Peruvian nuevo sol", :currency => :PEN, :symbol => "S/.", :cldr_symbol => "PEN" ) end it "should return all information for CAD, a currency code with multiple possible symbols" do data = Currencies.for_code("CAD") expect(data).to be_a(Hash) expect(data).to include( :name => "Canadian dollar", :currency => :CAD, :symbol => "$", :cldr_symbol => "CA$" ) end it "verifies that all code_points values are equivalent to their corresponding symbols" do Currencies.currency_codes.select do |code| data = Currencies.for_code(code) expect(data[:code_points].pack("U*")).to eq(data[:symbol]) end end end end
Version data entries
17 entries across 17 versions & 2 rubygems