consolidate email validation checks
This commit is contained in:
@@ -11,18 +11,6 @@ use Zotlabs\Tests\Unit\UnitTestCase;
|
||||
*/
|
||||
class TextTest extends UnitTestCase {
|
||||
|
||||
public function testGoodEmail() {
|
||||
$this->assertTrue(valid_email_regex('ken@spaz.org'));
|
||||
$this->assertTrue(valid_email_regex('ken@restivo.org'));
|
||||
$this->assertTrue(valid_email_regex('nobody@hubzilla.org'));
|
||||
$this->assertTrue(valid_email_regex('foo+nobody@hubzilla.org'));
|
||||
}
|
||||
|
||||
public function testBadEmail() {
|
||||
$this->assertFalse(valid_email_regex('nobody!uses!these!any.more'));
|
||||
$this->assertFalse(valid_email_regex('foo@bar@hubzilla.org'));
|
||||
}
|
||||
|
||||
public function testPurifyHTML() {
|
||||
// linebreaks
|
||||
$htmlbr = 'first line<br />
|
||||
|
Reference in New Issue
Block a user