/**
  * @expectedException \yii\base\Exception
  */
 public function testPrependToInsertExceptionIsRaisedWhenTargetIsNewRecord()
 {
     $node = new Node(['slug' => 'new']);
     $node->prependTo(new Node())->save();
 }