spatie/laravel-permission

Add tests for alternate Cache Drivers

drbyte opened this issue · 0 comments

drbyte commented

Currently the test suite only tests the default in-memory array cache.

I sometimes manually run the test suite against alternate Cache Stores:

// FOR MANUAL TESTING OF ALTERNATE CACHE STORES:
// $app['config']->set('cache.default', 'array');
//Laravel supports: array, database, file
//requires extensions: apc, memcached, redis, dynamodb, octane

It would be ideal to automate this.