You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-04 15:02:09 +03:00
29 lines
799 B
TypeScript
29 lines
799 B
TypeScript
import { strict as assert } from 'assert';
|
|
import testUtils, { GLOBAL } from '../test-utils';
|
|
import { transformArguments } from './OBJLEN';
|
|
|
|
describe('OBJLEN', () => {
|
|
describe('transformArguments', () => {
|
|
it('without path', () => {
|
|
assert.deepEqual(
|
|
transformArguments('key'),
|
|
['JSON.OBJLEN', 'key']
|
|
);
|
|
});
|
|
|
|
it('with path', () => {
|
|
assert.deepEqual(
|
|
transformArguments('key', '$'),
|
|
['JSON.OBJLEN', 'key', '$']
|
|
);
|
|
});
|
|
});
|
|
|
|
// testUtils.testWithClient('client.json.objLen', async client => {
|
|
// assert.equal(
|
|
// await client.json.objLen('key', '$'),
|
|
// [null]
|
|
// );
|
|
// }, GLOBAL.SERVERS.OPEN);
|
|
});
|