/**
  * @expectedException \Tbbc\MoneyBundle\MoneyException
  */
 public function testCurrencyWithoutRatio()
 {
     $eur = Money::BSD(100);
     $bsd = $this->manager->convert($eur, "EUR");
 }