Test with valid email address
()
| 289 | |
| 290 | |
| 291 | def test_email_validation(): |
| 292 | """Test with valid email address""" |
| 293 | schema = Schema({"email": Email()}) |
| 294 | out_ = schema({"email": "example@example.com"}) |
| 295 | |
| 296 | assert 'example@example.com"', out_.get("url") |
| 297 | |
| 298 | |
| 299 | def test_email_validation_with_none(): |