MaxScale/maxctrl/test/rotate.js
Markus Mäkelä c9f3d014d6 MXS-1300: Improve test coverage
The tests now cover 100% of all source files with the exception of the
call.js and common.js source files.
2017-07-23 08:21:00 +03:00

13 lines
244 B
JavaScript

require('../test_utils.js')()
describe("Rotate Commands", function() {
before(startMaxScale)
it('rotate logs', function() {
return doCommand('rotate logs')
.should.be.fulfilled
});
after(stopMaxScale)
});