'2010-01-30T23:59:59.999+00:00',
'2010-01-30T23:59:59.999-07:00',
'2010-01-30T00:00:00.000+07:00',
+ '2010-01-30T23:59:59.999-07',
+ '2010-01-30T00:00:00.000+07',
'2010-01-30 00:00:00.000Z'
], i;
zone.zone('2013-03-07T07:00:00+0100');
assert.equal(zone.zone(), -60, 'set the zone with a string that uses the +0000 syntax');
+ zone.zone('2013-03-07T07:00:00+02');
+ assert.equal(zone.zone(), -120, 'set the zone with a string that uses the +00 syntax');
+
zone.zone('03-07-2013T07:00:00-08:00');
assert.equal(zone.zone(), 480, 'set the zone with a string with a non-ISO 8601 date');
});