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