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