예제 #1
0
 /**
  * Tests Target::getPathRaw
  */
 public function testGetPathRaw()
 {
     $path = '/tmp/%m/%d';
     $filename = 'foo.txt';
     $target = new Target($path, $filename, strtotime('2014-12-01 04:30:57'));
     $this->assertEquals('/tmp/%m/%d', $target->getPathRaw());
 }