apeman-app-rest
Version:
apeman app to handle restful endpoint.
26 lines (17 loc) • 402 B
JavaScript
/**
* Test case for parseQuery.
* Runs with mocha.
*/
const parseQuery = require('../lib/parsing/parse_query.js')
const assert = require('assert')
const co = require('co')
describe('parse-query', () => {
before(() => co(function * () {
}))
after(() => co(function * () {
}))
it('Parse query', () => co(function * () {
}))
})
/* global describe, before, after, it */