Пример #1
0
 /**
  * Verify that initial currencies have been loaded
  */
 public function test_default_currencies()
 {
     APP_Currencies::init();
     $this->assertNotEmpty(APP_Currencies::get_currencies());
     $this->assertNotEmpty(APP_Currencies::get_currency('USD'));
     $this->assertEquals('US Dollars ($)', APP_Currencies::get_currency_string('USD'));
 }