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
31 lines (29 loc) · 710 Bytes
/
IsEmail.php
File metadata and controls
31 lines (29 loc) · 710 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
<?php
/**
* @group formatting
*/
class Tests_Formatting_IsEmail extends WP_UnitTestCase {
function test_returns_true_if_given_a_valid_email_address() {
$data = array(
"bob@example.com",
"phil@example.info",
"ace@204.32.222.14",
"kevin@many.subdomains.make.a.happy.man.edu"
);
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"
);
foreach ($data as $datum) {
$this->assertFalse(is_email($datum), $datum);
}
}
}