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