You are here

public function ThemekeyNodePropertiesTestCase::testPropertyNodeSticky in ThemeKey 7.3

Same name and namespace in other branches
  1. 7 tests/ThemekeyNodePropertiesTestCase.test \ThemekeyNodePropertiesTestCase::testPropertyNodeSticky()
  2. 7.2 tests/ThemekeyNodePropertiesTestCase.test \ThemekeyNodePropertiesTestCase::testPropertyNodeSticky()

File

tests/ThemekeyNodePropertiesTestCase.test, line 66
Implements tests for the theme switching rules.

Class

ThemekeyNodePropertiesTestCase
@file Implements tests for the theme switching rules.

Code

public function testPropertyNodeSticky() {
  $node = $this
    ->drupalCreateNode(array(
    'sticky' => TRUE,
  ));
  $this
    ->simplePropertyTest('node:sticky', '=', 1, array(
    'path' => 'node/' . $node->nid,
  ));
}