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