NodeRedis/node-redis

View on GitHub
packages/client/lib/commands/ZREMRANGEBYRANK.spec.ts

Summary

Maintainability
B
4 hrs
Test Coverage
import { strict as assert } from 'node:assert';
import testUtils, { GLOBAL } from '../test-utils';
import ZREMRANGEBYRANK from './ZREMRANGEBYRANK';
import { parseArgs } from './generic-transformers';

describe('ZREMRANGEBYRANK', () => {
  it('transformArguments', () => {
    assert.deepEqual(
      parseArgs(ZREMRANGEBYRANK, 'key', 0, 1),
      ['ZREMRANGEBYRANK', 'key', '0', '1']
    );
  });

  testUtils.testAll('zRemRangeByRank', async client => {
    assert.equal(
      await client.zRemRangeByRank('key', 0, 1),
      0
    );
  }, {
    client: GLOBAL.SERVERS.OPEN,
    cluster: GLOBAL.CLUSTERS.OPEN
  });
});