Пример #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"])