Sha256: f2326945ce1a7f0f1741b3d8a6d85675c43212771d57ee4e1b09a12f5f2fa54e
Contents?: true
Size: 1005 Bytes
Versions: 62
Compression:
Stored size: 1005 Bytes
Contents
require 'test_helper' module Workarea class CountryTest < TestCase def test_country_searching assert_equal(Country['US'], Country.search_for('US')) assert_equal(Country['US'], Country.search_for('Us')) assert_equal(Country['US'], Country.search_for('USA')) assert_equal(Country['US'], Country.search_for('UsA')) assert_equal(Country['US'], Country.search_for('United States of America')) assert_equal(Country['US'], Country.search_for('united states of america')) assert_equal(Country['US'], Country.search_for(Country['US'])) assert_equal(Country['US'], Country.search_for('United States')) assert_equal(Country['US'], Country.search_for('united states')) assert_equal(Country['US'], Country.search_for('United states')) assert_equal(Country['US'], Country.search_for('アメリカ合衆国')) end def test_country_json_serialization_isnt_insanely_verbose assert_equal('US', Country['US'].as_json) end end end
Version data entries
62 entries across 62 versions & 1 rubygems