#### Dancer app content get '/dosmth/:smth' => sub { #some code} hook after => sub { print "URI".request->uri; #This is printing /dosmth/123 and I want to print /dosmth/:smth/ } ###test script $t->request(GET "/dosmth/123"); #where i issue the request