describe('FormButton', () => {
  common.isConformant(FormButton)
  common.labelImplementsHtmlForProp(FormButton)

  it('renders a FormField with a Button control', () => {
    shallow(<FormButton />)
      .find('FormField')
      .should.have.prop('control', Button)
  })
})
describe('FormInput', () => {
  common.isConformant(FormInput)
  common.labelImplementsHtmlForProp(FormInput)

  it('renders a FormField with a Input control', () => {
    shallow(<FormInput />)
      .find('FormField')
      .should.have.prop('control', Input)
  })
})