Example #1
0
 /**
  * @group Core
  * @group Period
  * @group Period_Range
  */
 public function testGetLocalizedShortString()
 {
     Piwik_Translate::getInstance()->loadEnglishTranslation();
     $month = new Piwik_Period_Range('range', '2000-12-09,2001-02-01');
     $shouldBe = '9 Dec 00 - 1 Feb 01';
     $this->assertEquals($shouldBe, $month->getLocalizedShortString());
 }