http://qs321.pair.com?node_id=1210186

perl_help27 has asked for the wisdom of the Perl Monks concerning the following question:

Hello, I have a Dancer2 app with this psuedo code:
#### 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
My problem is that in the hook after, I am getting the uri /dosmth/123 but I am interested in the raw path /dosmth/:smth. I printed the whole request and there is nothing inside of it indicative of my needs (no route inside). Any idea how to solve this? Thanks