/**
 * Test case for index.
 * Runs with mocha.
 */
'use strict'

import * as index from '../lib/index'
import assert from 'assert'

describe('index', () => {
  before(() => {
  })

  after(() => {
  })

  it('index', () => {
    for (let name of Object.keys(index)) {
      assert.ok(index[ name ], `${name} should be defined`)
    }
  })
})

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