You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2025-08-07 17:42:53 +03:00
12 lines
256 B
PHP
12 lines
256 B
PHP
<?php
|
|
|
|
class ListDomainsTest extends \PHPUnit\Framework\TestCase {
|
|
public function testBasic() {
|
|
$domains = list_domains();
|
|
|
|
$this->assertTrue(is_array($domains));
|
|
}
|
|
}
|
|
|
|
/* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */
|