当前位置: 首页>>代码示例>>Python>>正文


Python _011_donor_inputs.Donor类代码示例

本文整理汇总了Python中_011_donor_inputs.Donor的典型用法代码示例。如果您正苦于以下问题:Python Donor类的具体用法?Python Donor怎么用?Python Donor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了Donor类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_mobile_with_wrong_start_var_two

	def test_mobile_with_wrong_start_var_two(self):
		self.assertFalse(Donor.is_valid_mobile_number('+37201234567'))
开发者ID:knapeczadam,项目名称:G_PY_bloodySoftware_T4F,代码行数:2,代码来源:_012_donor_tests.py

示例2: test_id_number_with_valid_string

	def test_id_number_with_valid_string(self):
		self.assertTrue(Donor.is_valid_id_number('123456ab'))
开发者ID:knapeczadam,项目名称:G_PY_bloodySoftware_T4F,代码行数:2,代码来源:_012_donor_tests.py

示例3: test_id_number_with_empty_string

	def test_id_number_with_empty_string(self):
		self.assertFalse(Donor.is_valid_id_number(''))
开发者ID:knapeczadam,项目名称:G_PY_bloodySoftware_T4F,代码行数:2,代码来源:_012_donor_tests.py

示例4: test_name_with_string_and_number

	def test_name_with_string_and_number(self):
		self.assertFalse(Donor.is_valid_name('david0'))
开发者ID:knapeczadam,项目名称:G_PY_bloodySoftware_T4F,代码行数:2,代码来源:_012_donor_tests.py

示例5: test_sickness_with_empty_string

	def test_sickness_with_empty_string(self):
		self.assertFalse(Donor.is_valid_sickness(''))
开发者ID:knapeczadam,项目名称:G_PY_bloodySoftware_T4F,代码行数:2,代码来源:_012_donor_tests.py

示例6: test_donation_date_with_empty_string

	def test_donation_date_with_empty_string(self):
		self.assertTrue(Donor.is_valid_donation_date(''))
开发者ID:knapeczadam,项目名称:G_PY_bloodySoftware_T4F,代码行数:2,代码来源:_012_donor_tests.py

示例7: test_donation_date_with_wrong_date

	def test_donation_date_with_wrong_date(self):
		self.assertFalse(Donor.is_valid_donation_date('2030.30.30'))
开发者ID:knapeczadam,项目名称:G_PY_bloodySoftware_T4F,代码行数:2,代码来源:_012_donor_tests.py

示例8: test_weight_with_zero

	def test_weight_with_zero(self):
		self.assertFalse(Donor.is_valid_weight('0'))
开发者ID:knapeczadam,项目名称:G_PY_bloodySoftware_T4F,代码行数:2,代码来源:_012_donor_tests.py

示例9: test_weight_with_letters

	def test_weight_with_letters(self):
		self.assertFalse(Donor.is_valid_weight('abc'))
开发者ID:knapeczadam,项目名称:G_PY_bloodySoftware_T4F,代码行数:2,代码来源:_012_donor_tests.py

示例10: test_mobile_contains_one_letter_var_two

	def test_mobile_contains_one_letter_var_two(self):
		self.assertFalse(Donor.is_valid_mobile_number('+3620I234567'))
开发者ID:knapeczadam,项目名称:G_PY_bloodySoftware_T4F,代码行数:2,代码来源:_012_donor_tests.py

示例11: test_weight_with_valid_string

	def test_weight_with_valid_string(self):
		self.assertTrue(Donor.is_valid_weight('50'))
开发者ID:knapeczadam,项目名称:G_PY_bloodySoftware_T4F,代码行数:2,代码来源:_012_donor_tests.py

示例12: test_name_with_two_characters

	def test_name_with_two_characters(self):
		self.assertTrue(Donor.is_valid_name('da'))
开发者ID:knapeczadam,项目名称:G_PY_bloodySoftware_T4F,代码行数:2,代码来源:_012_donor_tests.py

示例13: test_mobile_with_long_len_var_two

	def test_mobile_with_long_len_var_two(self):
		self.assertFalse(Donor.is_valid_mobile_number('062012345678'))
开发者ID:knapeczadam,项目名称:G_PY_bloodySoftware_T4F,代码行数:2,代码来源:_012_donor_tests.py

示例14: test_mobile_with_spaces

	def test_mobile_with_spaces(self):
		self.assertFalse(Donor.is_valid_mobile_number('            '))
开发者ID:knapeczadam,项目名称:G_PY_bloodySoftware_T4F,代码行数:2,代码来源:_012_donor_tests.py

示例15: test_date_with_empty_string

	def test_date_with_empty_string(self):
		self.assertFalse(Donor.is_valid_date(''))
开发者ID:knapeczadam,项目名称:G_PY_bloodySoftware_T4F,代码行数:2,代码来源:_012_donor_tests.py


注:本文中的_011_donor_inputs.Donor类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。