public function ConfigCacheTest::testCache

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Cache/ConfigCacheTest.php, line 34

Class

ConfigCacheTest

Namespace

Assetic\Test\Cache

Code

public function testCache() {
  $this->cache
    ->set('foo', array(
    1,
    2,
    3,
  ));
  $this
    ->assertEquals(array(
    1,
    2,
    3,
  ), $this->cache
    ->get('foo'), '->get() returns the ->set() value');
}