示例#1
0
 def test_set_countries(self):
     obj = MultiCountry()
     obj.countries = [fields.Country("NZ"), fields.Country("AU")]
     self.assertEqual(obj.countries, ["NZ", "AU"])
示例#2
0
 def test_empty_flag_url(self):
     country = fields.Country(code='XX', flag_url='')
     self.assertEqual(country.flag, '')
 def test_set_countries(self):
     obj = MultiCountry()
     obj.countries = [fields.Country('NZ'), fields.Country('AU')]
     self.assertEqual(obj.countries, ['NZ', 'AU'])
示例#4
0
 def test_alpha3(self):
     country = fields.Country(code='BN')
     self.assertEqual(country.alpha3, 'BRN')
示例#5
0
 def test_numeric(self):
     country = fields.Country(code='BN')
     self.assertEqual(country.numeric, 96)
示例#6
0
 def test_str(self):
     country = fields.Country(code='NZ')
     self.assertEqual('%s' % country, 'NZ')
示例#7
0
 def test_ioc_code(self):
     country = fields.Country(code='NL', flag_url='')
     self.assertEqual(country.ioc_code, 'NED')
示例#8
0
 def test_alpha3(self):
     country = fields.Country(code="BN")
     self.assertEqual(country.alpha3, "BRN")
示例#9
0
 def test_alpha3_invalid(self):
     country = fields.Country(code="XX")
     self.assertEqual(country.alpha3, "")
示例#10
0
 def test_ioc_code(self):
     country = fields.Country(code="NL", flag_url="")
     self.assertEqual(country.ioc_code, "NED")
示例#11
0
 def test_country_from_ioc_code(self):
     country = fields.Country.country_from_ioc("NED")
     self.assertEqual(country, fields.Country("NL", flag_url=""))
示例#12
0
 def test_str_attr(self):
     country = fields.Country(code="NZ", str_attr="name")
     self.assertEqual("%s" % country, "New Zealand")
示例#13
0
 def test_str(self):
     country = fields.Country(code="NZ")
     self.assertEqual("%s" % country, "NZ")
示例#14
0
 def test_hash(self):
     country = fields.Country(code="XX", flag_url="")
     self.assertEqual(hash(country), hash("XX"))
 def test_numeric_code_invalid(self):
     country = fields.Country(code=999)
     self.assertEqual(country.code, 999)
示例#16
0
 def test_numeric_invalid(self):
     country = fields.Country(code="XX")
     self.assertEqual(country.numeric, None)
示例#17
0
 def test_render_initial(self):
     with self.settings(COUNTRIES_ONLY={"AU": "Desert"}):
         html = self.Form(initial={"country": "AU"}).as_p()
         self.assertIn(fields.Country("AU").flag, html)
         self.assertNotIn(fields.Country("__").flag, html)
示例#18
0
 def test_empty_flag_url(self):
     country = fields.Country(code="XX", flag_url="")
     self.assertEqual(country.flag, "")
示例#19
0
 def test_str_attr(self):
     country = fields.Country(code='NZ', str_attr='name')
     self.assertEqual('%s' % country, 'New Zealand')
示例#20
0
 def test_alpha2_code(self):
     country = fields.Country(code="NZL")
     self.assertEqual(country.code, "NZ")
示例#21
0
 def test_country_from_ioc_code(self):
     country = fields.Country.country_from_ioc('NED')
     self.assertEqual(country, fields.Country('NL', flag_url=''))
示例#22
0
 def test_extensions(self):
     with mock.patch.object(fields, 'EXTENSIONS', {'codex2': lambda c: c.code * 2}):
         country = fields.Country(code='NZ')
         self.assertEqual(country.codex2, 'NZNZ')
示例#23
0
 def test_alpha3_invalid(self):
     country = fields.Country(code='XX')
     self.assertEqual(country.alpha3, '')
 def test_alpha2_code(self):
     country = fields.Country(code='NZL')
     self.assertEqual(country.code, 'NZ')
示例#25
0
 def test_numeric_padded_invalid(self):
     country = fields.Country(code='XX')
     self.assertEqual(country.numeric_padded, None)
 def test_alpha2_code_invalid(self):
     country = fields.Country(code='NZX')
     self.assertEqual(country.code, 'NZX')
示例#27
0
 def test_set_country(self):
     obj = MultiCountry()
     obj.countries = fields.Country('NZ')
     self.assertEqual(obj.countries, ['NZ'])
 def test_numeric_code(self):
     country = fields.Country(code=554)
     self.assertEqual(country.code, 'NZ')
示例#29
0
 def test_hash(self):
     country = fields.Country(code='XX', flag_url='')
     self.assertEqual(hash(country), hash('XX'))
示例#30
0
 def test_set_country(self):
     obj = MultiCountry()
     obj.countries = fields.Country("NZ")
     self.assertEqual(obj.countries, ["NZ"])