source: Dev/trunk/src/client/dojo/tests/cldr.js @ 485

Last change on this file since 485 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 372 bytes
Line 
1define(["doh/main", "../cldr/supplemental", "../cldr/monetary"], function(doh, supplemental){
2        doh.register("tests.cldr", [
3                function test_date_getWeekend(t){
4                        t.is(6, supplemental.getWeekend('en-us').start);
5                        t.is(0, supplemental.getWeekend('en').end);
6                        t.is(5, supplemental.getWeekend('he-il').start);
7                        t.is(6, supplemental.getWeekend('he').end);
8                }
9        ]);
10});
11
Note: See TracBrowser for help on using the repository browser.