MogileFSTest.php 457 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace Gaufrette\Functional\Adapter;
  3. use Gaufrette\Adapter\MogileFS;
  4. class MogileFSTest extends FunctionalTestCase
  5. {
  6. /**
  7. * @group functional
  8. */
  9. public function shouldGetMtime()
  10. {
  11. $this->markTestSkipped('Not supported by the adapter.');
  12. }
  13. /**
  14. * @group functional
  15. */
  16. public function shouldGetMtimeNonExistingFile()
  17. {
  18. $this->markTestSkipped('Not supported by the adapter.');
  19. }
  20. }