1 user.test | UserPictureTestCase::testNoPicture() |
File
- core/
modules/ user/ tests/ user.test, line 1103 - Tests for user.module.
Class
Code
function testNoPicture() {
$this->backdropLogin($this->user);
// Try to upload a file that is not an image for the user picture.
$not_an_image = current($this->backdropGetTestFiles('html'));
$this->saveUserPicture($not_an_image);
$supported_extensions = image_get_supported_extensions();
$this->assertRaw(t('Only images with the following extensions are allowed: @formats.', array('@formats' => implode(', ', $supported_extensions))), 'Non-image files are not accepted.');
}