use Test::More tests => 6;
BEGIN { use_ok( 'P4' ); }
# Load test utils
unshift( @INC, "." );
unshift( @INC, "t" );
require_ok( "p4test" );
my $test = P4::Test->new();
my $p4 = $test->InitClient();
ok( defined( $p4 ) );
$p4->SetProg( $0 );
ok( $p4->Connect() );
$p4->Tagged( 0 );
ok( ! $p4->IsTagged() );
$p4->Debug( 7 );
my $r = $p4->FetchClient();
ok( length($r) != 0, "FetchClientOutput Empty");
| # | Change | User | Description | Committed | |
|---|---|---|---|---|---|
| #2 | 19592 | jmash | Convert uses of indirect object construction syntax to use direct syntax in the test modules. | ||
| #1 | 19582 | jmash | Initial fork of P4Perl. | ||
| //guest/perforce_software/p4perl/main/t/25-fetch.t | |||||
| #1 | 15920 | Matt Attaway | Move p4perl files into the main directory | ||
| //guest/perforce_software/p4perl/t/25-fetch.t | |||||
| #1 | 8731 | Paul Allen |
FetchXxx() methods were not returning data due to a missing method: perlclientuser::OutputInfo() Update to Release notes for pre 14.1 changes. Transferred from p4://p4prod.perforce.com:1666@806060 |
||