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