Perl interface to TestRail's REST API
Doesn't implement every method provided (yet), just the ones I needed:
Basically everything needed to sync up automated test runs to the test management DB. TODO: alter tests so that you can keep in sync.
my $url = "http://some.testrail.install/";
my $user = 'JohnDoe';
my $pw = 'password';
my $apiClient = new TestRail::API($url,$user,$pass);
See POD for more info.