1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 22:14:03 +00:00
tenancy/tests/TenantManagerTest.php
2019-02-08 15:28:32 +01:00

21 lines
434 B
PHP

<?php
namespace Stancl\Tenancy\Tests;
class TenantManagerTest extends TestCase
{
public $autoCreateTenant = false;
public $autoInitTenancy = false;
/** @test */
public function current_tenant_is_stored_in_the_tenant_property()
{
$tenant = tenant()->create('localhost');
tenancy()->init('localhost');
$this->assertSame($tenant, tenancy()->tenant);
}
// todo write more tests
}