source: Dev/branches/rest-dojo-ui/client/dojo/tests/cldr.js @ 263

Last change on this file since 263 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

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