You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2026-01-03 17:02:30 +03:00
15 lines
290 B
PHP
15 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: */
|