You are here

function PathautoFunctionalTestCase::testUserEditing in Pathauto 7

Basic functional testing of Pathauto with users.

File

./pathauto.test, line 702
Functionality tests for Pathauto.

Class

PathautoFunctionalTestCase
Test basic pathauto functionality.

Code

function testUserEditing() {

  // There should be no Pathauto checkbox on user forms.
  $this
    ->drupalGet('user/' . $this->admin_user->uid . '/edit');
  $this
    ->assertNoFieldById('edit-path-pathauto');
}