class ISO3166::Country

def valid_alpha2?(country)

def valid_alpha2?(country)
  country.is_a?(String) && !ISO3166::Country.new(country).nil?
end