forked from WordPress/wordpress-develop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIsEmail.php
More file actions
33 lines (31 loc) · 740 Bytes
/
IsEmail.php
File metadata and controls
33 lines (31 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/**
* @group formatting
*/
class Tests_Formatting_IsEmail extends WP_UnitTestCase {
function test_returns_the_email_address_if_it_is_valid() {
$data = array(
'bob@example.com',
'phil@example.info',
'ace@204.32.222.14',
'kevin@many.subdomains.make.a.happy.man.edu',
'a@b.co',
);
foreach ( $data as $datum ) {
$this->assertEquals( $datum, is_email( $datum ), $datum );
}
}
function test_returns_false_if_given_an_invalid_email_address() {
$data = array(
'khaaaaaaaaaaaaaaan!',
'http://bob.example.com/',
"sif i'd give u it, spamer!1",
'com.exampleNOSPAMbob',
'bob@your mom',
'a@b.c',
);
foreach ( $data as $datum ) {
$this->assertFalse( is_email( $datum ), $datum );
}
}
}