in reply to strict refs usage

Everybody's told you all the reasons why you shouldn't do this, and given you all kinds of good alternatives. If, however, you really really have to do it this way, you can simply do the following to call the tests:
{ no strict 'refs'; &$_(); }
This will turn strict refs off for only the one statement and leave it on everywhere else.