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