UNPKG

apeman-app-rest

Version:
26 lines (17 loc) 490 B
/** * Test case for bulkRelatedCreateEndpoint. * Runs with mocha. */ 'use strict' const bulkRelatedCreateEndpoint = require('../lib/endpoints/bulk/bulk_related_create_endpoint.js') const assert = require('assert') const co = require('co') describe('bulk-related-create-endpoint', () => { before(() => co(function * () { })) after(() => co(function * () { })) it('Bulk related create endpoint', () => co(function * () { })) }) /* global describe, before, after, it */