import * as React from 'react';
import { shallow } from 'enzyme';
import IconPuzzlePiece from '../IconPuzzlePiece';
describe('icons/general/IconPuzzlePiece', () => {
test('should correctly render default icon with default color', () => {
const wrapper = shallow();
expect(wrapper).toMatchSnapshot();
});
test('should correctly render icon with specified color', () => {
const wrapper = shallow();
expect(wrapper).toMatchSnapshot();
});
test('should correctly render icon with specified width and height and default viewBox value', () => {
const wrapper = shallow();
expect(wrapper).toMatchSnapshot();
});
test('should correctly render icon with title', () => {
const wrapper = shallow();
expect(wrapper).toMatchSnapshot();
});
test('should correctly render icon with custom class name', () => {
const wrapper = shallow();
expect(wrapper).toMatchSnapshot();
});
});