public function ProtectedNodePageDisplay::setUp in Protected Node 7
Same name and namespace in other branches
- 1.0.x tests/protected_node.page_text.test \ProtectedNodePageDisplay::setUp()
Prepare users for protected node's tests.
Overrides ProtectedNodeBaseTestCase::setUp
File
- tests/
protected_node.page_text.test, line 27 - Test protected node password page display options.
Class
- ProtectedNodePageDisplay
- Configure protected_node to use per node password.
Code
public function setUp() {
parent::setUp();
// Log in an Admin.
$this
->drupalLogin($this->adminUser);
// Submit the configuration form.
$protected_node_settings = array(
'protected_node_use_global_password' => PROTECTED_NODE_PER_NODE_PASSWORD,
);
$this
->drupalPost('admin/config/content/protected_node', $protected_node_settings, t('Save configuration'));
}