1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-10 11:43:01 +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_USERS';
import ACL_USERS from './ACL_USERS';
describe('ACL USERS', () => {
testUtils.isVersionGreaterThanHook([6]);
testUtils.isVersionGreaterThanHook([6]);
it('transformArguments', () => {
assert.deepEqual(
transformArguments(),
['ACL', 'USERS']
);
});
it('transformArguments', () => {
assert.deepEqual(
ACL_USERS.transformArguments(),
['ACL', 'USERS']
);
});
});