()
| 543 | |
| 544 | |
| 545 | def test_email_empty_local() -> None: |
| 546 | validate_email("@test", allow_empty_local=True, test_environment=True) |
| 547 | |
| 548 | # This next one might not be desirable. |
| 549 | validate_email("\"\"@test", allow_empty_local=True, allow_quoted_local=True, test_environment=True) |
| 550 | |
| 551 | |
| 552 | def test_email_test_domain_name_in_test_environment() -> None: |
nothing calls this directly
no test coverage detected