예제 #1
0
 public function testLocaleIsRegionlessHelper()
 {
     $this->assertFalse(LocoLocale::is_regionless('en'), 'French (fr) should not be regionless');
     $this->assertFalse(LocoLocale::is_regionless('en'), 'English (en) should not be regionaless');
     $this->assertTrue(LocoLocale::is_regionless('th'), 'Thai (th) should be regionless');
     $this->assertTrue(LocoLocale::is_regionless('ca'), 'Catalan (ca) should be regionless');
 }