You are here

public function NodeRecurAdminTestCase::testNodeRecurContentCreateFormNonRepeat in Node recur 7.2

Tests admin content form has recur options only on pages with date fields

File

tests/node_recur.test, line 104

Class

NodeRecurAdminTestCase
Verify admin screens work as expected

Code

public function testNodeRecurContentCreateFormNonRepeat() {
  $edit = array();
  $edit["title"] = 'Basic Node';
  $this
    ->drupalPost('/node/add/basic-node', $edit, t('Save'));
  $this
    ->assertNoText(t('Repeat this basic node'));
}