function UserPictureTestCase::testNoPicture

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

File

drupal-7.x/modules/user/user.test, line 954
Tests for user.module.

Class

UserPictureTestCase

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.'), 'Non-image files are not accepted.');
}