You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2025-08-06 06:42:37 +03:00
14 lines
290 B
PHP
14 lines
290 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: */
|