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

import ApListBody from '../lib/ap_list_body'
import React from 'react'
import assert from 'assert'
import { shallow } from 'enzyme'

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

  after(() => {
  })

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

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