Example #1
0
 public function testMtime()
 {
     $tmp = tempnam(sys_get_temp_dir(), uniqid());
     copy(__DIR__ . '/fixtures/adapter.zip', $tmp);
     $adapter = new Zip($tmp);
     $adapter->write('foo', 'Hello world');
     $this->assertEquals(time(), $adapter->mtime('foo'), null, 1);
 }