function NodePostSettingsTestCase::testPageNotPostInfo in Drupal 7
Confirms absence of post information on a new node.
File
- modules/
node/ node.test, line 901 - Tests for node.module.
Class
- NodePostSettingsTestCase
- Checks that the post information displays when enabled for a content type.
Code
function testPageNotPostInfo() {
// Set "Basic page" content type to display post information.
$edit = array();
$edit['node_submitted'] = FALSE;
$this
->drupalPost('admin/structure/types/manage/page', $edit, t('Save content type'));
// Create a node.
$edit = array();
$langcode = LANGUAGE_NONE;
$edit["title"] = $this
->randomName(8);
$edit["body[{$langcode}][0][value]"] = $this
->randomName(16);
$this
->drupalPost('node/add/page', $edit, t('Save'));
// Check that the post information is displayed.
$node = $this
->drupalGetNodeByTitle($edit["title"]);
$this
->assertNoRaw('<span class="submitted">', 'Post information is not displayed.');
}