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