You are here

function JammerPreviewButtonTest::testNoPreviewButtonWithContentAccess in Jammer 6

File

./jammer.test, line 31
Jammer simpletest test suite.

Class

JammerPreviewButtonTest
@file

Code

function testNoPreviewButtonWithContentAccess() {
  $this
    ->drupalCreateContentType(array(
    'type' => 'jammerpreviewtest',
  ));
  $user = $this
    ->drupalCreateUser(array(
    'create jammerpreviewtest content',
  ));
  $this
    ->drupalLogin($user);
  $this
    ->drupalGet('node/add/jammerpreviewtest');
  $this
    ->assertNoRaw('id="edit-preview"');
}