/**
  * @return array
  */
 public function getGlobals()
 {
     return array('currency' => array('default' => $this->currency->getDefaultCurrency()));
 }
 public function testDefaultCurrency()
 {
     $this->assertEquals('EUR', $this->currency->getDefaultCurrency());
 }