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