use of org.apache.rocketmq.connect.redis.parser.LPopParser in project rocketmq-externals by apache.
the class ParserTest method testLPopParser.
@Test
public void testLPopParser() {
String command = "LPOP key";
KVEntry builder = new LPopParser().parse(parseCommand(command));
Assert.assertEquals("LPOP", builder.getCommand());
Assert.assertEquals("key", builder.getKey());
}
Aggregations