disable() public method

public disable ( )
 public function testDisableCacheWillNeverCallDriver()
 {
     $stash = new Item($this->getMockedDriver(), array('test', 'key'));
     $stash->disable();
     $this->assertTrue($stash->isDisabled());
     $this->assertDisabledStash($stash);
 }