apeman-app-rest
Version:
apeman app to handle restful endpoint.
26 lines (17 loc) • 462 B
JavaScript
/**
* Test case for relatedCreateEndpoint.
* Runs with mocha.
*/
const relatedCreateEndpoint = require('../lib/endpoints/related_create_endpoint.js')
const assert = require('assert')
const co = require('co')
describe('related-create-endpoint', () => {
before(() => co(function * () {
}))
after(() => co(function * () {
}))
it('Related create endpoint', () => co(function * () {
}))
})
/* global describe, before, after, it */