mkanat%bugzilla.org d0bc259040 Preliminary support for Bugzilla 3.6.x
git-svn-id: svn://10.0.0.236/trunk@260648 18797224-902f-48f8-a5cc-f745e15eee43
2010-07-06 15:09:21 +00:00

31 lines
407 B
Perl

package API_suite;
use strict;
use base qw(Test::Unit::TestSuite);
use Test::Unit::TestRunner;
use lib "..";
use lib "../..";
use Bugzilla::Extension::Testopia::Test::API::Util;
sub name { 'Testopia API Test Suite' }
sub include_tests {
qw(
API_Build
API_Environment
API_Product
API_TestCase
API_TestCaseRun
API_TestPlan
API_TestRun
)
}
1;
__END__