You are here

fpp.with_panels_and_entity.test in Fieldable Panels Panes (FPP) 7

Tests for the Fieldable Panels Panes module with Panels and Entity API.

File

tests/fpp.with_panels_and_entity.test
View source
<?php

/**
 * @file
 * Tests for the Fieldable Panels Panes module with Panels and Entity API.
 */

/**
 * Tests for the Fieldable Panels Panes module with Panels and Entity API.
 */
class FppWithPanelsAndEntityTest extends FppWithPanelsTest {

  /**
   * {@inheritdoc}
   */
  public static function getInfo() {
    return array(
      'name' => 'FPP tests for Panels and Entity API',
      'description' => 'Confirm that FPP+Panes continues working when Entity API is enabled.',
      'group' => 'FPP',
      'dependencies' => array(
        'ctools',
        'panels',
        'views',
        'entity',
      ),
    );
  }

  /**
   * {@inheritdoc}
   */
  public function setUp(array $modules = array()) {

    // Entity API.
    $modules[] = 'entity';

    // The parent setup method will do all of the rest.
    parent::setUp($modules);
  }

}

Classes

Namesort descending Description
FppWithPanelsAndEntityTest Tests for the Fieldable Panels Panes module with Panels and Entity API.