/**
 * Test case for ap-list-item-image.
 * Runs with mocha.
 */
'use strict'

import ApListItemImage from '../lib/ap_list_item_image'
import React from 'react'
import assert from 'assert'
import { shallow } from 'enzyme'

describe('ap-list-item-image', () => {
  before(() => {
  })

  after(() => {
  })

  it('Render a component', () => {
    let element = shallow(
      <ApListItemImage/>
    )
    assert.ok(element)
  })
})

/* global describe, before, after, it */
