You are here

function PublishContentWebCaseTest::set_node_status in Publish Content 5.2

Same name and namespace in other branches
  1. 6 tests/publishcontent.test \PublishContentWebCaseTest::set_node_status()
5 calls to PublishContentWebCaseTest::set_node_status()
PublishContentWebCaseTest::assert_current_user_cannot_publish_node in tests/publishcontent.test
PublishContentWebCaseTest::assert_current_user_cannot_unpublish_node in tests/publishcontent.test
PublishContentWebCaseTest::assert_current_user_can_publish_node in tests/publishcontent.test
PublishContentWebCaseTest::assert_current_user_can_unpublish_node in tests/publishcontent.test
PublishContentWebCaseTest::testNoPermissionByOwner in tests/publishcontent.test
Test the access for the owner of a node without the permission to publish or unpublish.

File

tests/publishcontent.test, line 54
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 set_node_status(&$node, $status, $msg = 'unable to set correct node status') {
  $node->status = $status;
  node_save($node);
  $this
    ->assert_node_status($node->nid, $status, $msg);
}