WIP Metadata class.

This commit is contained in:
Ahmed Bouhuolia
2019-09-08 02:41:46 +02:00
parent 70809cb05c
commit 9a8de9ca7d
29 changed files with 1707 additions and 98 deletions

View File

@@ -0,0 +1,26 @@
describe('routes: `/roles/`', () => {
describe('POST: `/roles/`', () => {
it('Should name be required.', () => {
});
it('Should `permissions` be ', () => {
});
it('Should response success with correct data format.', async () => {
});
it('Should save the given role details in the storage.', () => {
});
});
describe('DELETE: `/roles/:id`', () => {
it('Should not delete the predefined role.', () => {
});
});
});