|
|
Drupal example source code file (xmlsitemap_menu.test)
The xmlsitemap_menu.test Drupal example source code<?php // $Id: xmlsitemap_menu.test,v 1.1.2.3 2010/11/13 04:37:32 davereid Exp $ /** * @file * Unit tests for the xmlsitemap_menu module. */ class XMLSitemapMenuFunctionalTest extends XMLSitemapTestHelper { protected $normal_user; protected $menu_items = array(); public static function getInfo() { return array( 'name' => 'XML sitemap menu', 'description' => 'Functional tests for the XML sitemap menu module.', 'group' => 'XML sitemap', ); } function setUp($modules = array()) { $modules[] = 'xmlsitemap_menu'; $modules[] = 'menu'; parent::setUp($modules); $this->admin_user = $this->drupalCreateUser(array('administer menu', 'administer xmlsitemap')); $this->normal_user = $this->drupalCreateUser(array('access content')); } function testMenuSettings() { $this->drupalLogin($this->admin_user); $edit = array( 'title' => $this->randomName(), 'menu_name' => drupal_strtolower($this->randomName()), 'xmlsitemap[status]' => '1', 'xmlsitemap[priority]' => '1.0', ); $this->drupalPost('admin/build/menu/add', $edit, 'Save'); $menu = menu_load($edit['menu_name']); $this->clickLink('Add item'); $edit = array( 'menu[link_title]' => $this->randomName(), 'menu[link_path]' => 'node', 'xmlsitemap[status]' => 'default', 'xmlsitemap[priority]' => 'default', ); $this->drupalPost(NULL, $edit, 'Save'); } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal xmlsitemap_menu.test source code file: |
"Drupal" is a registered trademark of Dries Buytaert.
my drupal tutorials and examples
Copyright
1998-2016 Alvin Alexander, alvinalexander.com
All Rights Reserved.
Beginning in 2016, a portion of the proceeds from pages under the '/drupal-code-examples/' URI will be donated to charity.