You are here

flot_views.test in Flot 7

File

flot_views/flot_views.test
View source
<?php

/**
 * Test basic functionality of My Module.
 */
class FlotViewsBasicTestCase extends DrupalWebTestCase {

  /**
   * {@inheritdoc}
   */
  public static function getInfo() {
    return array(
      'name' => 'Flot Views',
      'description' => 'Confirm that the Flot Views module can be enabled.',
      'group' => 'Flot',
    );
  }

  /**
   * {@inheritdoc}
   */
  public function setUp() {

    // Enable this custom module.
    $modules = array(
      'flot_views',
    );
    parent::setUp($modules);
  }

}

Classes

Namesort descending Description
FlotViewsBasicTestCase Test basic functionality of My Module.