You are here

public function TagadelicDrupalWrapperTest::testCache_get in Tagadelic 7.2

@covers TagadelicDrupalWrapper::cache_get

File

tests/TagadelicDrupalWrapperTest.php, line 29

Class

TagadelicDrupalWrapperTest

Code

public function testCache_get() {
  $this
    ->assertTrue(method_exists($this->object, "cache_get"));
  $this
    ->assertSame($this->object
    ->cache_get(1337), "cache_get(1337,cache)");
  $this
    ->assertSame($this->object
    ->cache_get(1337, "custom"), "cache_get(1337,custom)");
}