WIP Items module.

This commit is contained in:
Ahmed Bouhuolia
2019-09-03 02:07:28 +02:00
parent cb8c294d74
commit 70809cb05c
142 changed files with 12674 additions and 64 deletions

View File

@@ -0,0 +1,42 @@
describe('routes: `/routes`', () => {
describe('POST: `/routes`', () => {
it('Should create a new user if the user was not authorized.', () => {
});
it('Should `email` be required.', () => {
});
it('Should `password` be required.', () => {
});
it('Should `status` be boolean', () => {
});
});
describe('DELETE: `/users/:id`', () => {
it('Should not success if the user was not authorized.', () => {
});
it('Should not success if the user was pre-defined user.', () => {
});
it('Should response not found if the user was not exist.', () => {
});
it('Should response success if the user was exist.', () => {
});
it('Should delete the give user after success response.', () => {
});
});
});