You are here

public function CacheTest::testCacheBin in AmazonS3 7.2

Test that the cache bin is properly set.

@covers Drupal\amazons3\cache::__construct

File

tests/CacheTest.php, line 20

Class

CacheTest
Test our cache wrapper.

Namespace

Drupal\amazons3Test

Code

public function testCacheBin() {
  $cache = new Cache();
  $this
    ->assertEquals('cache_amazons3_metadata', $cache
    ->getCacheTable());
}