UNPKG

apeman-app-rest

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