/**
  * @expectedException \Herrera\Wise\Exception\InvalidReferenceException
  * @expectedExceptionMessage The non-scalar reference "%test.reference%" cannot be used inline.
  */
 public function testProcessNonScalarReference()
 {
     $this->loader->process(array('bad_reference' => 'bad: %test.reference%', 'test' => array('reference' => array('value' => 123))), 'test.php');
 }