mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 09:02:41 +00:00
b3f631e335
PostgreSQL and MySQL both have better locking mechanisms than what was previously implemented, as well
13 lines
282 B
PHP
13 lines
282 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse;
|
|
|
|
|
|
class TestUserInternalDriver extends Test\AbstractTest {
|
|
use Test\User\CommonTests;
|
|
|
|
const USER1 = "john.doe@example.com";
|
|
const USER2 = "jane.doe@example.com";
|
|
|
|
public $drv = User\Internal\Driver::class;
|
|
}
|