1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- var Pikaday = require('../'),
- expect = require('expect.js');
- describe('Pikaday public method', function ()
- {
- 'use strict';
- describe('#toString()', function ()
- {
- it('should return empty string when date not set', function ()
- {
- var pikaday = new Pikaday();
- expect(pikaday.toString()).to.be.empty;
- });
- it('should return date string, formatted by moment, when date is set', function() {
- var date = new Date(2014, 3, 25),
- pikaday = new Pikaday({
- format: 'DD-MM-YY'
- });
- pikaday.setDate(date);
- expect(pikaday.toString()).to.eql('25-04-14');
- });
- });
- describe('When specifying minDate option in Constructor', function () {
- it('Should remove the time portion (flattening to midnight)', function () {
- var date = new Date(2015, 1, 17, 22, 10, 5),
- expected = new Date(2015, 1, 17, 0, 0, 0),
- pikaday = new Pikaday({ minDate: date });
- expect(pikaday._o.minDate).to.eql(expected);
- });
- });
- describe('#setMinDate()', function () {
- it('should flatten date to midnight ignoring time portion (consistent with minDate option in ctor)', function () {
- var date = new Date(2015, 1, 17, 22, 10, 5),
- expected = new Date(2015, 1, 17, 0, 0, 0),
- pikaday = new Pikaday();
- pikaday.setMinDate(date);
- expect(pikaday._o.minDate).to.eql(expected);
- });
- });
- });
|