it('should return only full months', () => {
      const actual = expandRange(moment('2016-12-01'), moment('2017-02-15'), 'months');
      const expected = Immutable.List([moment('2016-12-01'), moment('2017-01-01')]);
      expect(Immutable.is(actual, expected)).to.equal(true);
    });