it('should return expanded range for months', () => {
      const actual = expandRange(moment('2016-12-01'), moment('2017-02-01'), 'months');
      const expected = Immutable.List([moment('2016-12-01'), moment('2017-01-01')]);

      expect(Immutable.is(actual, expected)).to.equal(true);