Beispiel #1
0
 function testDeepMove()
 {
     $tree = new TreeMock();
     $tree->move('hi/sub', 'hi2');
     $this->assertArrayHasKey('hi2', $tree->getNodeForPath('')->newDirectories);
     $this->assertTrue($tree->getNodeForPath('hi/sub')->isDeleted);
 }