You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2025-07-31 10:04:20 +03:00
14 lines
260 B
PHP
14 lines
260 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: */
|