12345678910111213141516171819202122232425 |
- <?php
- namespace Gaufrette\Functional\Adapter;
- use Gaufrette\Adapter\MogileFS;
- class MogileFSTest extends FunctionalTestCase
- {
- /**
- * @group functional
- */
- public function shouldGetMtime()
- {
- $this->markTestSkipped('Not supported by the adapter.');
- }
- /**
- * @group functional
- */
- public function shouldGetMtimeNonExistingFile()
- {
- $this->markTestSkipped('Not supported by the adapter.');
- }
- }
|