Parent Directory
|
Revision Log
|
Revision Graph
add empty template test file to get someone started writing tests
| 1 | <?php |
| 2 | // $Id$ |
| 3 | |
| 4 | /** |
| 5 | * @file |
| 6 | * Test the basic functions of the Inactive User module. |
| 7 | */ |
| 8 | |
| 9 | class InactiveUserTest extends DrupalWebTestCase { |
| 10 | public static function getInfo() { |
| 11 | return array( |
| 12 | 'name' => t('Inactive User'), |
| 13 | 'description' => t('Test Inactive User.'), |
| 14 | 'group' => t('Inactive User') |
| 15 | ); |
| 16 | } |
| 17 | |
| 18 | function setUp() { |
| 19 | parent::setUp('inactive_user'); |
| 20 | } |
| 21 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |