1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 20:34:03 +00:00

fixed messed up names

This commit is contained in:
Abrar Ahmad 2022-06-29 18:48:51 +05:00
parent 0692cdc36a
commit e7d0bbf302
5 changed files with 7 additions and 10 deletions

View file

@ -49,7 +49,7 @@ beforeEach(function () {
UpdateSyncedResource::$shouldQueue = false; // global state cleanup
Event::listen(SyncedResourceSaved::class, UpdateSyncedResource::class);
$this->artisan('migrate', [
test()->artisan('migrate', [
'--path' => [
__DIR__ . '/Etc/synced_resource_migrations',
__DIR__ . '/Etc/synced_resource_migrations/users',
@ -225,7 +225,7 @@ test('attaching a tenant to the central resource triggers a pull from the tenant
});
});
test('attaching users to tenants d o e s n o t d o a n y t h i n g', function () {
test('attaching users to tenants does not do anything', function () {
$centralUser = CentralUser::create([
'global_id' => 'acme',
'name' => 'John Doe',
@ -294,7 +294,7 @@ test('resources are synced only to workspaces that have the resource', function
});
});
test('when a resource exists in other tenant dbs but is c r e a t e d in a tenant db the synced columns are updated in the other dbs', function () {
test('when a resource exists in other tenant dbs but is created in a tenant db the synced columns are updated in the other dbs', function () {
// create shared resource
$centralUser = CentralUser::create([
'global_id' => 'acme',
@ -570,6 +570,7 @@ function migrateTenantsResource()
'--realpath' => true,
])->assertExitCode(0);
}
class ResourceTenant extends Tenant
{
public function users()