예제 #1
0
파일: ForHumansTest.php 프로젝트: hmlb/date
 public function testYearsAndMonthsInDanish()
 {
     Interval::setLocale('da');
     $this->assertSame('1 år 1 måned', Interval::create(1, 1)->forHumans());
     $this->assertSame('2 år 1 måned', Interval::create(2, 1)->forHumans());
 }