it('should return expanded range for days', () => {
      const actual = expandRange(moment('2016-12-12'), moment('2016-12-14'), 'days');
      const expected = Immutable.List([moment('2016-12-12'), moment('2016-12-13')]);

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