[TESTS] Fix Core/CacheTest
This commit is contained in:
parent
88ace68627
commit
813e66e83e
|
@ -140,10 +140,10 @@ class CacheTest extends KernelTestCase
|
||||||
static::assertSame(['quux', 'foo', 'bar'], Cache::getList($key, function ($i) { $this->assertFalse('should not be called'); }, pool: 'file'));
|
static::assertSame(['quux', 'foo', 'bar'], Cache::getList($key, function ($i) { $this->assertFalse('should not be called'); }, pool: 'file'));
|
||||||
Cache::listPushLeft($key, 'foobar', max_count: 2, pool: 'file');
|
Cache::listPushLeft($key, 'foobar', max_count: 2, pool: 'file');
|
||||||
static::assertSame(['foobar', 'quux'], Cache::getList($key, function ($i) { $this->assertFalse('should not be called'); }, pool: 'file'));
|
static::assertSame(['foobar', 'quux'], Cache::getList($key, function ($i) { $this->assertFalse('should not be called'); }, pool: 'file'));
|
||||||
Cache::listPushRight($key, 'foo');
|
Cache::listPushRight($key, 'foo', pool: 'file');
|
||||||
static::assertSame(['foobar', 'quux', 'foo'], Cache::getList($key, function ($i) { $this->assertFalse('should not be called'); }));
|
static::assertSame(['foobar', 'quux', 'foo'], Cache::getList($key, function ($i) { $this->assertFalse('should not be called'); }, pool: 'file'));
|
||||||
Cache::listPushRight($key, 'bar', max_count: 2);
|
Cache::listPushRight($key, 'bar', max_count: 2, pool: 'file');
|
||||||
static::assertSame(['foo', 'bar'], Cache::getList($key, function ($i) { $this->assertFalse('should not be called'); }));
|
static::assertSame(['foo', 'bar'], Cache::getList($key, function ($i) { $this->assertFalse('should not be called'); }, pool: 'file'));
|
||||||
static::assertTrue(Cache::deleteList($key, pool: 'file'));
|
static::assertTrue(Cache::deleteList($key, pool: 'file'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user