Skip to content

Instantly share code, notes, and snippets.

Created July 22, 2013 23:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/a38ba00c172ac0a137d6 to your computer and use it in GitHub Desktop.
Save anonymous/a38ba00c172ac0a137d6 to your computer and use it in GitHub Desktop.
<?php
/**
* @file
* Contains \Drupal\forum\Tests\ForumTourTest.
*/
namespace Drupal\forum\Tests;
use Drupal\tour\Tests\TourTestSimple;
/**
* Tests tour functionality.
*/
class ForumTourTest extends TourTestSimple {
protected $tips = array(
'admin/structure/forum/add/forum' => array(
array('data-id' => 'edit-name'),
),
);
protected $permissions = array('administer forums', 'access tour');
public static $modules = array('forum', 'tour');
public static function getInfo() {
return array(
'name' => 'Forum tour tests',
'description' => 'Tests the Forum tour.',
'group' => 'Tour',
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment