1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 20:54:04 +00:00

Update PrefixCacheBootstrapperTest.php

This commit is contained in:
Abrar Ahmad 2022-11-24 12:05:19 +05:00
parent e550c7dcdd
commit 3cff2e3ba9

View file

@ -86,8 +86,10 @@ test('central cache is not broke', function () {
expect(cache()->get('key'))->toBe('tenant');
tenancy()->end();
cache()->put('key2', 'central-two');
expect(cache()->get('key'))->toBe('central');
expect(cache()->get('key2'))->toBe('central-two');
});
test('cache base prefix can be customized', function () {