mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Test that email is trimmed
This commit is contained in:
parent
22b2d58b5a
commit
fc40e0b98a
@ -1593,4 +1593,12 @@ class MemberTest extends FunctionalTest
|
|||||||
|
|
||||||
$this->assertSame('Johnson', $member->getLastName(), 'getLastName should proxy to Surname');
|
$this->assertSame('Johnson', $member->getLastName(), 'getLastName should proxy to Surname');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testEmailIsTrimmed()
|
||||||
|
{
|
||||||
|
$member = new Member();
|
||||||
|
$member->Email = " trimmed@test.com\r\n";
|
||||||
|
$member->write();
|
||||||
|
$this->assertNotNull(Member::get()->find('Email', 'trimmed@test.com'));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user