describe('when given style as prop', () => {
    it('should merge styles', () => {
      const sut = shallow(<List style='hi' />)
      expect(sut).to.have.prop('style', 'hi')
    })