summaryrefslogtreecommitdiff
path: root/modules/system/system.test
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-06-13 20:40:09 +0000
committerDries Buytaert <dries@buytaert.net>2009-06-13 20:40:09 +0000
commitdaedf71b7c1683a21df35e2f9d8660e89deeea62 (patch)
tree0dd29e1788ff6fa5c8415bf28dcc390429d15576 /modules/system/system.test
parentbddec37f6df0fdb9171ec826f6961517163934da (diff)
downloadbrdo-daedf71b7c1683a21df35e2f9d8660e89deeea62.tar.gz
brdo-daedf71b7c1683a21df35e2f9d8660e89deeea62.tar.bz2
- Patch #391412 by JamesAn et al: move contact form, post, and user settings below Site configuration.
Diffstat (limited to 'modules/system/system.test')
-rw-r--r--modules/system/system.test14
1 files changed, 13 insertions, 1 deletions
diff --git a/modules/system/system.test b/modules/system/system.test
index 46cafc001..17c76a65a 100644
--- a/modules/system/system.test
+++ b/modules/system/system.test
@@ -454,8 +454,8 @@ class AdminOverviewTestCase extends DrupalWebTestCase {
$this->assertLink(t('Content management'));
// Make sure menu items without children are hidden.
- $this->assertNoLink(t('Site building'));
$this->assertNoLink(t('Site configuration'));
+ $this->assertNoLink(t('Site building'));
$this->assertNoLink(t('User management'));
$this->assertNoLink(t('Reports'));
}
@@ -518,7 +518,11 @@ class AccessDeniedTestCase extends DrupalWebTestCase {
$edit = array(
'title' => $this->randomName(10),
+<<<<<<< system.test
+ NODE_BODY_FIELD => array(array('value' => $this->randomName(100))),
+=======
'body' => array(array('value' => $this->randomName(100))),
+>>>>>>> 1.47
);
$node = $this->drupalCreateNode($edit);
@@ -579,7 +583,11 @@ class PageNotFoundTestCase extends DrupalWebTestCase {
$edit = array(
'title' => $this->randomName(10),
+<<<<<<< system.test
+ NODE_BODY_FIELD => array(array('value' => $this->randomName(100))),
+=======
'body' => array(array('value' => $this->randomName(100))),
+>>>>>>> 1.47
);
$node = $this->drupalCreateNode($edit);
@@ -705,7 +713,11 @@ class PageTitleFiltering extends DrupalWebTestCase {
// Generate node content.
$edit = array(
'title' => '!SimpleTest! ' . $title . $this->randomName(20),
+<<<<<<< system.test
+ NODE_BODY_FIELD . '[0][value]' => '!SimpleTest! test body' . $this->randomName(200),
+=======
'body[0][value]' => '!SimpleTest! test body' . $this->randomName(200),
+>>>>>>> 1.47
);
// Create the node with HTML in the title.
$this->drupalPost('node/add/page', $edit, t('Save'));