packages/client/lib/commands/UNLINK.spec.ts
import { strict as assert } from 'node:assert';
import testUtils, { GLOBAL } from '../test-utils';
import UNLINK from './UNLINK';
import { parseArgs } from './generic-transformers';
describe('UNLINK', () => {
describe('transformArguments', () => {
it('string', () => {
assert.deepEqual(
parseArgs(UNLINK, 'key'),
['UNLINK', 'key']
);
});
it('array', () => {
assert.deepEqual(
parseArgs(UNLINK, ['1', '2']),
['UNLINK', '1', '2']
);
});
});
testUtils.testAll('unlink', async client => {
assert.equal(
await client.unlink('key'),
0
);
}, {
client: GLOBAL.SERVERS.OPEN,
cluster: GLOBAL.CLUSTERS.OPEN
});
});