apeman-app-rest
Version:
apeman app to handle restful endpoint.
26 lines (17 loc) • 397 B
JavaScript
/**
* Test case for parseBody.
* Runs with mocha.
*/
const parseBody = require('../lib/parsing/parse_body.js')
const assert = require('assert')
const co = require('co')
describe('parse-body', () => {
before(() => co(function * () {
}))
after(() => co(function * () {
}))
it('Parse body', () => co(function * () {
}))
})
/* global describe, before, after, it */