2018-06-14 20:17:54 -07:00
|
|
|
/* jslint node:true */
|
|
|
|
|
/* global it:false */
|
|
|
|
|
/* global describe:false */
|
|
|
|
|
/* global before:false */
|
|
|
|
|
/* global after:false */
|
|
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
var accesscontrol = require('../accesscontrol.js'),
|
|
|
|
|
expect = require('expect.js');
|
|
|
|
|
|
|
|
|
|
describe('access control', function () {
|
2020-02-06 16:57:33 +01:00
|
|
|
describe('verifyToken', function () {
|
|
|
|
|
// FIXME
|
2018-06-14 16:32:24 -07:00
|
|
|
});
|
|
|
|
|
|
2020-02-06 16:57:33 +01:00
|
|
|
describe('hasRole', function () {
|
|
|
|
|
// FIXME
|
2018-06-14 16:28:09 -07:00
|
|
|
});
|
2018-06-14 20:17:54 -07:00
|
|
|
});
|