describe('when given className as prop', () => {
    it('should merge classNames', () => {
      const sut = shallow(<List className="Fancy" />)
      expect(sut).to.have.className('Fancy')
    })