flot_views.test in Flot 7
File
flot_views/flot_views.testView 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
Name | Description |
---|---|
FlotViewsBasicTestCase | Test basic functionality of My Module. |