summaryrefslogtreecommitdiff
path: root/tests/simple_unit/I18N/CultureInfoTest.php
blob: 840d8f171af981147ab9ddf818cb3da0602ee048 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

Prado::using('System.I18N.core.*');
class CultureInfoTest extends UnitTestCase
{
	function test_missing_english_names_returns_culture_code()
	{
		$culture = new CultureInfo('iw');
		$this->assertEqual($culture->getEnglishName(), 'iw');
	}
}

?>