Merge branch '2.3' into 2.4
This commit is contained in:
commit
f4e04f5c42
@ -192,6 +192,10 @@ exports.builder = function(yargs) {
|
||||
}, function(argv) {
|
||||
maxctrl(argv, function(host) {
|
||||
|
||||
if (argv.u == argv.name) {
|
||||
return error('Cannot alter current user')
|
||||
}
|
||||
|
||||
var user = {
|
||||
'data': {
|
||||
'id': argv.name,
|
||||
|
@ -195,6 +195,11 @@ describe("Alter Commands", function() {
|
||||
.should.be.rejected
|
||||
})
|
||||
|
||||
it('rejects alteration to current user', function() {
|
||||
return doCommand('-u bob -p bob alter user bob bob2')
|
||||
.should.be.rejected
|
||||
})
|
||||
|
||||
it('creates user', function() {
|
||||
return verifyCommand('create user testuser test', 'users/inet/testuser')
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user