public function PMTeamTestCase::testpmteamCreate in Drupal PM (Project Management) 8
Same name and namespace in other branches
- 7.3 pmteam/pmteam.test \PMTeamTestCase::testpmteamCreate()
- 7 pmteam/pmteam.test \PMTeamTestCase::testpmteamCreate()
- 7.2 pmteam/pmteam.test \PMTeamTestCase::testpmteamCreate()
Tests creation of pmteam nodes.
File
- pmteam/
pmteam.test, line 33 - Test definitions for PM Team.
Class
- PMTeamTestCase
- Define a test case for PM Team.
Code
public function testpmteamCreate() {
// Log in with permission to create test content.
$user = $this
->drupalCreateUser(array(
'create pmteam content',
));
$this
->drupalLogin($user);
// Create test content.
$team = array(
'title' => $this
->randomName(32),
);
$this
->drupalPost('node/add/pmteam', $team, t('Save'));
$this
->assertText(t('Team @title has been created.', array(
'@title' => $team['title'],
)));
}