source:
Dev/trunk/src/client/dojo/tests/cldr.js
Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago | |
---|---|
File size: 372 bytes |
Line | |
---|---|
1 | define(["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.