You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2025-07-31 10:04:20 +03:00
16 lines
295 B
PHP
16 lines
295 B
PHP
<?php
|
|
|
|
class ListAdminsTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
public function testBasic()
|
|
{
|
|
$list = list_admins();
|
|
|
|
// may be empty, depending on db.
|
|
|
|
$this->assertTrue(is_array($list));
|
|
}
|
|
}
|
|
|
|
/* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */
|