function PublishContentWebCaseTest::testDoPublishByNodeOwner in Publish Content 6
Same name and namespace in other branches
- 5.2 tests/publishcontent.test \PublishContentWebCaseTest::testDoPublishByNodeOwner()
File
- tests/
publishcontent.test, line 153 - Unit tests for Publish Content module. prerequesite: make sure that 'authenticated user' does not have any access like 'publish [content type] content' or 'unpublish [content type] content'
Class
- PublishContentWebCaseTest
- @file Unit tests for Publish Content module. prerequesite: make sure that 'authenticated user' does not have any access like 'publish [content type] content' or 'unpublish [content type] content'
Code
function testDoPublishByNodeOwner() {
$type = 'page';
$web_user = $this
->drupalCreateUser(array(
'publish any ' . $type . ' content',
));
$this
->drupalLogin($web_user);
$node = $this
->drupalCreateNode(array(
'type' => $type,
'uid' => $web_user->uid,
'status' => 1,
));
$this
->assert_current_user_can_publish_node($node);
$this
->assert_current_user_cannot_unpublish_node($node);
}