1 book.test | public BookTestCase::testBookAddToOutlineAccess() |
Test add to book outline access
File
- core/
modules/ book/ tests/ book.test, line 213 - Tests for book.module.
Class
- BookTestCase
- Tests the functionality of the Book module.
Code
public function testBookAddToOutlineAccess() {
$this->backdropLogin($this->admin_user);
$this->backdropGet('node/add/page');
$this->assertNoText('Book outline', 'Cannot add page to book outline.');
config_set('book.settings', 'book_admin_allowed_all', 1);
$this->backdropGet('node/add/page');
$this->assertText('Book outline', 'Can add page to book outline.');
}