@Test
public void test15() throws Exception {
String t = "http://www.google.com/notebook/feeds/{userID}{-prefix|/notebooks/|notebookID}{-opt|/-/|categories}{-list|/|categories}?{-join|&|updated-min,updated-max,alt,start-index,max-results,entryID,orderby}";
String e = "http://www.google.com/notebook/feeds/a/notebooks/b?updated-min=c&max-results=d";
HashMapContext c = new HashMapContext();
c.put("userID", "a");
c.put("notebookID","b");
c.put("updated-min","c");
c.put("max-results", "d");
eval(t,e,c);
}