PostfixAdmin - web based virtual user administration interface for Postfix mail servers https://postfixadmin.github.io/postfixadmin/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
353 B

  1. <?php
  2. class CheckOwnerTest extends \PHPUnit\Framework\TestCase {
  3. public function testBasic() {
  4. $check = check_owner('random@example.com', 'test.com');
  5. $this->assertFalse($check, "there should be no entries in test.com as it's an invalid/non-existant domain");
  6. }
  7. }
  8. /* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */