You are here

function EncryptEncryptionMethodHooksTest::setUp in Encrypt 7

Enable encrypt module.

Overrides DrupalWebTestCase::setUp

File

./encrypt.test, line 168
Tests for encrypt.module

Class

EncryptEncryptionMethodHooksTest
Test encryption method hooks.

Code

function setUp() {
  parent::setUp('encrypt', 'encrypt_test');
  $adminUser = $this
    ->drupalCreateUser(array(
    'administer encrypt',
  ));
  $this
    ->drupalLogin($adminUser);
}