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/forum/forum.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/forum/forum.test')
-rw-r--r-- | modules/forum/forum.test | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/forum/forum.test b/modules/forum/forum.test index df0d61d04..142f076eb 100644 --- a/modules/forum/forum.test +++ b/modules/forum/forum.test @@ -77,14 +77,14 @@ class ForumTestCase extends DrupalWebTestCase { // Enable the active forum block. $edit = array(); $edit['forum_active[region]'] = 'right'; - $this->drupalPost('admin/build/block', $edit, t('Save blocks')); + $this->drupalPost('admin/structure/block', $edit, t('Save blocks')); $this->assertResponse(200); $this->assertText(t('The block settings have been updated.'), t('[Active forum topics] Forum block was enabled')); // Enable the new forum block. $edit = array(); $edit['forum_new[region]'] = 'right'; - $this->drupalPost('admin/build/block', $edit, t('Save blocks')); + $this->drupalPost('admin/structure/block', $edit, t('Save blocks')); $this->assertResponse(200); $this->assertText(t('The block settings have been updated.'), t('[New forum topics] Forum block was enabled')); @@ -93,7 +93,7 @@ class ForumTestCase extends DrupalWebTestCase { // Add forum to navigation menu. $edit = array(); - $this->drupalPost('admin/build/menu-customize/navigation', $edit, t('Save configuration')); + $this->drupalPost('admin/structure/menu-customize/navigation', $edit, t('Save configuration')); $this->assertResponse(200); // Edit forum taxonomy. @@ -131,7 +131,7 @@ class ForumTestCase extends DrupalWebTestCase { ); // Edit the vocabulary. - $this->drupalPost('admin/build/taxonomy/' . $vid, $edit, t('Save')); + $this->drupalPost('admin/structure/taxonomy/' . $vid, $edit, t('Save')); $this->assertResponse(200); $this->assertRaw(t('Updated vocabulary %name.', array('%name' => $title)), t('Vocabulary was edited')); @@ -170,7 +170,7 @@ class ForumTestCase extends DrupalWebTestCase { ); // Create forum. - $this->drupalPost('admin/build/forum/add/' . $type, $edit, t('Save')); + $this->drupalPost('admin/structure/forum/add/' . $type, $edit, t('Save')); $this->assertResponse(200); $type = ($type == 'container') ? 'forum container' : 'forum'; $this->assertRaw(t('Created new @type %term.', array('%term' => $name, '@type' => t($type))), t(ucfirst($type) . ' was created')); @@ -194,7 +194,7 @@ class ForumTestCase extends DrupalWebTestCase { */ function deleteForum($tid) { // Delete the forum id. - $this->drupalPost('admin/build/forum/edit/forum/' . $tid, array(), t('Delete')); + $this->drupalPost('admin/structure/forum/edit/forum/' . $tid, array(), t('Delete')); $this->drupalPost(NULL, NULL, t('Delete')); // Assert that the forum no longer exists. |