You are here

function coder_6x_tests_menu in Coder 5.2

File

tests/coder_6x.inc, line 206
This file implements tests for the Drupal 6.x upgrade.

Code

function coder_6x_tests_menu() {
  $items = array();
  $items['test_good'] = array(
    'title' => 'My title',
    // Ok.
    'description' => 'My description',
  );
  $items['test_bad'] = array(
    'title' => t('My title'),
    // Not Ok.
    'description' => t('My description'),
  );
}