dongfeng-pay/jhboss/static/lib/bootstrap-datetimepicker/tests/suites/inline.js

29 lines
769 B
JavaScript
Raw Normal View History

2019-12-19 14:47:58 +08:00
module('Inline', {
setup: function(){
this.component = $('<div data-date="12-02-2012"></div>')
.appendTo('#qunit-fixture')
.datetimepicker({format: "dd-mm-yyyy"});
this.dp = this.component.data('datetimepicker')
this.picker = this.dp.picker;
},
teardown: function(){
this.picker.remove();
}
});
test('Picker gets date/viewDate from data-date attr', function(){
datesEqual(this.dp.date, UTCDate(2012, 1, 12));
datesEqual(this.dp.viewDate, UTCDate(2012, 1, 12));
});
test('Visible after init', function(){
ok(this.picker.is(':visible'));
});
test('update', function(){
this.dp.update('13-03-2012')
datesEqual(this.dp.date, UTCDate(2012, 2, 13));
});