Skip to content

Instantly share code, notes, and snippets.

@santerref
Last active November 30, 2016 19:06
Show Gist options
  • Save santerref/e68bdbd7d8986760e46d6ff23d385ea4 to your computer and use it in GitHub Desktop.
Save santerref/e68bdbd7d8986760e46d6ff23d385ea4 to your computer and use it in GitHub Desktop.
Create an administrator account within Drupal 7 SimpleTest.
<?php
class TrashTestCase extends DrupalWebTestCase {
# [...]
public function testAdminContentNodesList() {
# Administrator account
$permissions = module_invoke_all('permission');
$permissions = array_keys($permissions);
$account = $this->drupalCreateUser($permissions);
# [...]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment