Improve MaxCtrl test coverage

A few missing cases that simple to solve were reported by the coverage
tool.
This commit is contained in:
Markus Mäkelä
2018-08-10 21:46:38 +03:00
parent 46dee98b25
commit 57471c7baa
5 changed files with 32 additions and 1 deletions

View File

@ -20,5 +20,10 @@ describe("Module Commands", function() {
.should.be.rejected
})
it('call unknown command', function() {
return doCommand('call command mariadbmon log')
.should.be.rejected
})
after(stopMaxScale)
});