UserPictureTestCase::testNoPicture

7 user.test UserPictureTestCase::testNoPicture()
8 user.test UserPictureTestCase::testNoPicture()

File

modules/user/user.test, line 884
Tests for user.module.

Code

function testNoPicture() {
  $this->drupalLogin($this->user);

  // Try to upload a file that is not an image for the user picture.
  $not_an_image = current($this->drupalGetTestFiles('html'));
  $this->saveUserPicture($not_an_image);
  $this->assertRaw(t('Only JPEG, PNG and GIF images are allowed.'), t('Non-image files are not accepted.'));
}
Login or register to post comments