TestRail Perl API

George S. Baugh e089c78a71 Don't die just because HTTP requests fail, guarantee sane exits 11 years ago
dist 6110ef989f v0.011 - DZILified 11 years ago
lib e089c78a71 Don't die just because HTTP requests fail, guarantee sane exits 11 years ago
t e089c78a71 Don't die just because HTTP requests fail, guarantee sane exits 11 years ago
.gitignore 5247c44245 Initial commit of distribution 11 years ago
.mailmap b7bf683722 Fix authorship/contrib 11 years ago
Changes e089c78a71 Don't die just because HTTP requests fail, guarantee sane exits 11 years ago
MANIFEST.SKIP 6110ef989f v0.011 - DZILified 11 years ago
README.md 06e419c499 Correct README 11 years ago
dist.ini d03ba72d1c Add perlcritic tests 11 years ago
perlcriticrc d03ba72d1c Add perlcritic tests 11 years ago
tidyall.ini 0ad541ed21 Add DZIL tidying for next release 11 years ago
weaver.ini 30139d5bf7 More DZIL stuff 11 years ago

README.md

TestRail::API

Perl interface to TestRail's REST API

Doesn't implement every method provided (yet), just the ones I needed:

  • Making Projects,Suites,Sections,Cases,Plans and Runs
  • Getting the same
  • Deleting the same
  • Setting test run statuses

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.