-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Andrey edited this page Sep 13, 2022
·
2 revisions
Welcome to the rust-common wiki!
feature = "country-code"
let country_code = CountryCode::parse("UA");
let country_code = CountryCode::parse("UKR");
#[cfg(test)]
mod test {
#[test]
fn test_email() {
assert_eq!(true, super::validate_email("[email protected]"));
assert_eq!(false, super::validate_email("test@@test.com"));
assert_eq!(false, super::validate_email("@test.com"));
assert_eq!(false, super::validate_email("aaaa@"));
assert_eq!(true, super::validate_email("[email protected]"));
}
}