You are here

function PublishContentWebCaseTest::assert_node_status in Publish Content 6

Same name and namespace in other branches
  1. 5.2 tests/publishcontent.test \PublishContentWebCaseTest::assert_node_status()
3 calls to PublishContentWebCaseTest::assert_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::set_node_status in tests/publishcontent.test

File

tests/publishcontent.test, line 47
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 assert_node_status($nid, $status, $msg = 'node status mismatches') {
  $result = node_load($nid, NULL, TRUE);
  $this
    ->assertEqual($result->status, $status, $msg);
}