Delete test functions that do not have corresponding function entities.

This commit is contained in:
bobo.yang 2023-08-21 11:52:00 +08:00
parent 90126a9d48
commit 0e8e1a6e2c

View File

@ -51,34 +51,4 @@ describe('commandsBase', () => {
expect(result).to.be.false; expect(result).to.be.false;
}); });
}); });
describe('getPipxEnvironmentPath', () => {
afterEach(() => {
sinon.restore();
});
it('should return the pipx environment path if found', () => {
sinon.stub(commonUtil, 'runCommand').callsFake((command: string) => {
if (command === 'python3 -m pipx environment') {
return 'PIPX_BIN_DIR=/path/to/bin';
}
return '';
});
const result = commandsBase.getPipxEnvironmentPath("python3");
expect(result).to.equal('/path/to/bin');
});
it('should return null if pipx environment path is not found', () => {
sinon.stub(commonUtil, 'runCommand').callsFake((command: string) => {
if (command === 'python3 -m pipx environment') {
return 'No pipx environment found';
}
return '';
});
const result = commandsBase.getPipxEnvironmentPath("python3");
expect(result).to.be.null;
});
});
}); });