FileSystemSerializerTest.php 673 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /*
  3. * This file is part of the Stash package.
  4. *
  5. * (c) Robert Hafner <tedivm@tedivm.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Stash\Test\Driver;
  11. use Stash\Driver\FileSystem;
  12. /**
  13. * @package Stash
  14. * @author Robert Hafner <tedivm@tedivm.com>
  15. */
  16. class FileSystemSerializerTest extends FileSystemTest
  17. {
  18. protected $driverClass = 'Stash\Driver\FileSystem';
  19. protected $extension = '.pser';
  20. protected function getOptions($options = array())
  21. {
  22. return array_merge(array('memKeyLimit' => 2, 'encoder' => 'Serializer'), $options);
  23. }
  24. }