コード例 #1
0
ファイル: tests.py プロジェクト: andrewsjoiner/FoodWaste
 def test_is_epa_email_fail_nine(self):
     """Runs the test to check if an email address is in the right format to be an epa email address."""
     self.assertEqual(is_epa_email("*****@*****.**"), False)
コード例 #2
0
ファイル: tests.py プロジェクト: andrewsjoiner/FoodWaste
 def test_is_epa_email_pass_one(self):
     """Runs the test to check if an email address is in the right format to be an epa email address."""
     self.assertEqual(is_epa_email("*****@*****.**"), True)