function tour_test_menu

Implements hook_menu().

File

drupal/core/modules/tour/tests/tour_test/tour_test.module, line 13
Provides tests for tour module

Code

function tour_test_menu() {
  $items['tour-test-1'] = array(
    'route_name' => 'tour_test_1',
    'title' => 'Tour test 1',
  );
  $items['tour-test-2/subpath'] = array(
    'route_name' => 'tour_test_2',
    'title' => 'Tour test 2',
  );
  return $items;
}