diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-07-20 18:51:36 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-07-20 18:51:36 +0000 |
commit | d24d954479320116bc01f332c28a8eaab28c3ccd (patch) | |
tree | 1c791703bde5429b500e91cabb5845a80e13aff3 /modules/node/node.test | |
parent | 999d76e7aa9d9fb1b79b0be171e18e705d9ab7ff (diff) | |
download | brdo-d24d954479320116bc01f332c28a8eaab28c3ccd.tar.gz brdo-d24d954479320116bc01f332c28a8eaab28c3ccd.tar.bz2 |
- Patch #521474 by bangpound, JuliaKM et al: rename admin/site-building to admin/structure.
Diffstat (limited to 'modules/node/node.test')
-rw-r--r-- | modules/node/node.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/node/node.test b/modules/node/node.test index 91d71e5f2..a742083a4 100644 --- a/modules/node/node.test +++ b/modules/node/node.test @@ -397,7 +397,7 @@ class SummaryLengthTestCase extends DrupalWebTestCase { $edit = array ( 'teaser_length' => 200, ); - $this->drupalPost('admin/build/node-type/page', $edit, t('Save content type')); + $this->drupalPost('admin/structure/node-type/page', $edit, t('Save content type')); // Attempt to access the front page again and check if the summary is now only 200 characters in length. $this->drupalGet("node"); $this->assertNoRaw($expected, t('Check that the summary is not longer than 200 characters'), 'Node'); @@ -457,13 +457,13 @@ class NodeBlockTestCase extends DrupalWebTestCase { function testSearchFormBlock() { // Set block title to confirm that the interface is availble. - $this->drupalPost('admin/build/block/configure/node/syndicate', array('title' => $this->randomName(8)), t('Save block')); + $this->drupalPost('admin/structure/block/configure/node/syndicate', array('title' => $this->randomName(8)), t('Save block')); $this->assertText(t('The block configuration has been saved.'), t('Block configuration set.')); // Set the block to a region to confirm block is availble. $edit = array(); $edit['node_syndicate[region]'] = 'footer'; - $this->drupalPost('admin/build/block', $edit, t('Save blocks')); + $this->drupalPost('admin/structure/block', $edit, t('Save blocks')); $this->assertText(t('The block settings have been updated.'), t('Block successfully move to footer region.')); } } @@ -495,7 +495,7 @@ class NodePostSettingsTestCase extends DrupalWebTestCase { // Set page content type to display post information. $edit = array(); $edit['node_submitted'] = TRUE; - $this->drupalPost('admin/build/node-type/page', $edit, t('Save content type')); + $this->drupalPost('admin/structure/node-type/page', $edit, t('Save content type')); // Create a node. $edit = array(); @@ -516,7 +516,7 @@ class NodePostSettingsTestCase extends DrupalWebTestCase { // Set page content type to display post information. $edit = array(); $edit['node_submitted'] = FALSE; - $this->drupalPost('admin/build/node-type/page', $edit, t('Save content type')); + $this->drupalPost('admin/structure/node-type/page', $edit, t('Save content type')); // Create a node. $edit = array(); |