1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00
This commit is contained in:
Leibale
2023-06-19 18:54:22 -04:00
parent 2455ab2089
commit faea2488af
4 changed files with 33 additions and 33 deletions

View File

@@ -1,14 +1,14 @@
import { strict as assert } from 'assert';
import testUtils from '../test-utils';
import { transformArguments } from './ACL_WHOAMI';
import ACL_WHOAMI from './ACL_WHOAMI';
describe('ACL WHOAMI', () => {
testUtils.isVersionGreaterThanHook([6]);
testUtils.isVersionGreaterThanHook([6]);
it('transformArguments', () => {
assert.deepEqual(
transformArguments(),
['ACL', 'WHOAMI']
);
});
it('transformArguments', () => {
assert.deepEqual(
ACL_WHOAMI.transformArguments(),
['ACL', 'WHOAMI']
);
});
});