예제 #1
0
 /**
  * Tests Target::isCompressed
  */
 public function testNotCompressedWithoutCompressor()
 {
     $path = '/tmp/%Y/%m';
     $filename = 'foo-%d.txt';
     $target = new Target($path, $filename);
     $this->assertFalse($target->isCompressed());
 }