Projet

Général

Profil

Paste
Télécharger (540 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / panels / tests / PanelsTermViewWebTestCase.test @ 08475715

1
<?php
2

    
3
/**
4
 * @file
5
 * Some rudimentary tests for the term_view handler.
6
 */
7

    
8
class PanelsTermViewWebTestCase extends PanelsEntityViewWebTestCase {
9

    
10
  /**
11
   * {@inheritdoc}
12
   */
13
  public static function getInfo() {
14
    return array(
15
      'name' => 'Panels term_view tests',
16
      'description' => 'Test the standard term_view task handler.',
17
      'group' => 'Panels',
18
    );
19
  }
20

    
21
  /**
22
   * {@inheritdoc}
23
   */
24
  protected $view_name = 'term_view';
25

    
26
  /**
27
   * {@inheritdoc}
28
   */
29
  protected $view_label = 'Taxonomy term template';
30

    
31
}