import React from 'react';
import { shallow } from 'enzyme';
import { CardGroup } from '../';
describe('CardGroup', () => {
it('should render with "card-group" class', () => {
const wrapper = shallow(Yo!);
expect(wrapper.text()).toBe('Yo!');
expect(wrapper.hasClass('card-group')).toBe(true);
});
it('should render additional classes', () => {
const wrapper = shallow(Yo!);
expect(wrapper.hasClass('other')).toBe(true);
expect(wrapper.hasClass('card-group')).toBe(true);
});
it('should render custom tag', () => {
const wrapper = shallow(Yo!);
expect(wrapper.text()).toBe('Yo!');
expect(wrapper.hasClass('card-group')).toBe(true);
expect(wrapper.find('main').length).toBe(1);
});
});