You are here

public function PMNoteTestCase::testpmnoteCreate in Drupal PM (Project Management) 7.3

Same name and namespace in other branches
  1. 8 pmnote/pmnote.test \PMNoteTestCase::testpmnoteCreate()
  2. 7 pmnote/pmnote.test \PMNoteTestCase::testpmnoteCreate()
  3. 7.2 pmnote/pmnote.test \PMNoteTestCase::testpmnoteCreate()

Node creation test case.

File

pmnote/pmnote.test, line 51
Test definitions for PM Note.

Class

PMNoteTestCase
Define a test case for PM Note.

Code

public function testpmnoteCreate() {

  // Log in with permission to create test content.
  $user = $this
    ->drupalCreateUser(array(
    'create pmnote content',
  ));
  $this
    ->drupalLogin($user);

  // Create test content.
  $note = array(
    'title' => $this
      ->randomName(32),
  );
  $this
    ->drupalPost('node/add/pmnote', $note, t('Save'));
  $this
    ->assertText(t('Note @title has been created.', array(
    '@title' => $note['title'],
  )));
}