예제 #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, '')
예제 #3
0
 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"))
예제 #15
0
 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, '')
예제 #24
0
 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)
예제 #26
0
 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'])
예제 #28
0
 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"])