You are here

PanelsTermViewWebTestCase.test in Panels 7.3

Some rudimentary tests for the term_view handler.

File

tests/PanelsTermViewWebTestCase.test
View source
<?php

/**
 * @file
 * Some rudimentary tests for the term_view handler.
 */
class PanelsTermViewWebTestCase extends PanelsEntityViewWebTestCase {

  /**
   * {@inheritdoc}
   */
  public static function getInfo() {
    return array(
      'name' => 'Panels term_view tests',
      'description' => 'Test the standard term_view task handler.',
      'group' => 'Panels',
    );
  }

  /**
   * {@inheritdoc}
   */
  protected $view_name = 'term_view';

  /**
   * {@inheritdoc}
   */
  protected $view_label = 'Taxonomy term template';

}

Classes

Namesort descending Description
PanelsTermViewWebTestCase @file Some rudimentary tests for the term_view handler.