import React from 'react'
import { shallow } from 'enzyme'
import { Bullet, BulletTypes } from './Bullet'
describe('Bullet', () => {
it('Should render a Bullet with "default" type if not specified', () => {
const wrapper = shallow()
expect(wrapper.hasClass('kirk-bullet--default')).toBe(true)
})
it('Should render a Bullet with "addon" type', () => {
const wrapper = shallow()
expect(wrapper.hasClass('kirk-bullet--addon')).toBe(true)
})
})