Example #1
0
 public function testReal()
 {
     $path = new Path(__DIR__ . '/..');
     $real = $path->toReal();
     $this->assertEquals($real->name(), realpath(__DIR__ . '/..'));
     $path = new Path('./');
     $this->setExpectedException('Exception');
     $path->toReal();
 }