Skip to content

Commit

Permalink
Improve Test Spec
Browse files Browse the repository at this point in the history
  • Loading branch information
robincher committed Mar 22, 2018
1 parent 26457e6 commit ef3e3bc
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion spec/scripts/IControlUtilSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,22 @@ describe('iControl REST API Client Test Spec - Normal Cases', () => {

describe('Initialization Normal Case', () => {

it('iControl Client initialise', function () {
it('iControl Client initialise', () => {
expect(IControlClient.list).to.be.ok;
expect(IControlClient.create).to.be.ok;
expect(IControlClient.update).to.be.ok;
expect(IControlClient.delete).to.be.ok;
});

it('iControl Client Default Values', () => {
expect(IControlClient.host).to.be.eql('127.0.0.1');
expect(IControlClient.proto).to.be.eql('https');
expect(IControlClient.port).to.be.eql(443);
expect(IControlClient.output).to.be.eql(true);
});



});

describe('List / Get F5 iControl Collection', () => {
Expand Down

0 comments on commit ef3e3bc

Please sign in to comment.