change api test PATCH user to PUT user

pull/32/head
HardiReady 2018-03-30 09:16:11 +02:00
parent 3c5dbcd71d
commit bd18f7b4cf
1 changed files with 5 additions and 5 deletions

View File

@ -102,13 +102,13 @@ describe('Users', () => {
});
/*
* Test the /PATCH route
* Test the /PUT route
*/
describe('/PATCH users', () => {
it('it should not PATCH a user without auth-token provided', (done) => {
describe('/PUT users', () => {
it('it should not PUT a user without auth-token provided', (done) => {
chai.request(server)
.patch(urls.users + '/someId')
.send({})
.put(urls.users + '/someId')
.send({_id: "someId"})
.end((err, res) => {
res.should.have.status(codes.forbidden);
res.body.should.be.a('object');