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