You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2025-08-09 05:02:44 +03:00
14 lines
302 B
PHP
14 lines
302 B
PHP
<?php
|
|
|
|
require_once('common.php');
|
|
|
|
class CheckOwnerTest extends \PHPUnit\Framework\TestCase {
|
|
public function testBasic() {
|
|
$check = check_owner('random@example.com', 'test.com');
|
|
|
|
$this->assertFalse($check);
|
|
}
|
|
}
|
|
|
|
/* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */
|