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

import ApList from '../lib/ap_list'
import React from 'react'
import assert from 'assert'
import { shallow } from 'enzyme'

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

  after(() => {
  })

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

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