
ruz at bestpractical
Sep 4, 2007, 8:02 AM
Post #1 of 1
(67 views)
Permalink
|
|
r8891 - rtfm/branches/2.1-TESTING/t
|
|
Author: ruz Date: Tue Sep 4 11:02:57 2007 New Revision: 8891 Removed: rtfm/branches/2.1-TESTING/t/System.pm.t Modified: rtfm/branches/2.1-TESTING/t/2basic_api.t Log: * merge t/System.pm.t into t/2basic_api.t Modified: rtfm/branches/2.1-TESTING/t/2basic_api.t ============================================================================== --- rtfm/branches/2.1-TESTING/t/2basic_api.t (original) +++ rtfm/branches/2.1-TESTING/t/2basic_api.t Tue Sep 4 11:02:57 2007 @@ -3,13 +3,18 @@ use warnings; use strict; -use Test::More tests => 38; +use Test::More tests => 41; BEGIN { require 't/utils.pl' } use_ok('RT'); RT::LoadConfig(); RT::Init(); +use_ok 'RT::FM::System'; +my $sys = new RT::FM::System; +isa_ok $sys, 'RT::FM::System'; +is $sys->Id, 1; + use_ok('RT::FM::Class'); my $class = RT::FM::Class->new($RT::SystemUser); _______________________________________________ Rt-commit mailing list Rt-commit [at] lists http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-commit
|