public function MongoDbSessionHandlerTest::testDestroy

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/MongoDbSessionHandlerTest.php, line 79

Class

MongoDbSessionHandlerTest
@author Markus Bachmann <markus.bachmann@bachi.biz>

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage\Handler

Code

public function testDestroy() {
  $this->storage
    ->write('foo', 'bar');
  $this->storage
    ->destroy('foo');
  $this
    ->assertEquals('', $this->storage
    ->read('foo'));
}