describe('<InputRadio/>', () => {
    it('should set an id in the input element', () => {
        const component = mount(<InputRadio />);
        expect(component.find('input').prop('id')).toMatch(/input/);
    });