Skip to content

Commit

Permalink
Added RespCommand but it fails
Browse files Browse the repository at this point in the history
  • Loading branch information
Vijay-Nirmal committed Sep 17, 2024
1 parent 594618a commit b0a5085
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions test/Garnet.test/Resp/ACL/RespCommandTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3480,6 +3480,21 @@ static async Task DoLPopCountAsync(GarnetClient client)
}
}

[Test]
public async Task LPosACLsAsync()
{
await CheckCommandsAsync(
"LPOS",
[DoLPosAsync]
);

static async Task DoLPosAsync(GarnetClient client)
{
string val = await client.ExecuteForStringResultAsync("LPOS", ["foo", "a"]);
ClassicAssert.IsNull(val);
}
}

[Test]
public async Task LPushACLsAsync()
{
Expand Down

0 comments on commit b0a5085

Please sign in to comment.