Changeset 10378
- Timestamp:
- 01/30/10 06:25:16 (2 years ago)
- Location:
- trunk/Padre/xt
- Files:
-
- 9 edited
-
01-copyright.t (modified) (1 diff)
-
02-eol.t (modified) (1 diff)
-
03-compile.t (modified) (1 diff)
-
11-pragmas.t (modified) (1 diff)
-
12-badcode.t (modified) (1 diff)
-
13-perl-beginner.t (modified) (1 diff)
-
20-actions.t (modified) (1 diff)
-
critic-core.t (modified) (1 diff)
-
critic-util.t (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Padre/xt/01-copyright.t
r10037 r10378 4 4 use Test::More; 5 5 use File::Find::Rule; 6 7 # Don't run tests for installs 8 unless ( $ENV{AUTOMATED_TESTING} or $ENV{RELEASE_TESTING} ) { 9 plan( skip_all => "Author tests not required for installation" ); 10 } 6 11 7 12 my @files = File::Find::Rule->name('*.pm')->file->in('lib'); -
trunk/Padre/xt/02-eol.t
r9417 r10378 4 4 5 5 BEGIN { 6 # Don't run tests for installs 7 unless ( $ENV{AUTOMATED_TESTING} or $ENV{RELEASE_TESTING} ) { 8 plan( skip_all => "Author tests not required for installation" ); 9 } 10 6 11 unless ( $ENV{DISPLAY} or $^O eq 'MSWin32' ) { 7 12 plan skip_all => 'Needs DISPLAY'; -
trunk/Padre/xt/03-compile.t
r10252 r10378 6 6 7 7 BEGIN { 8 # Don't run tests for installs 9 unless ( $ENV{AUTOMATED_TESTING} or $ENV{RELEASE_TESTING} ) { 10 plan( skip_all => "Author tests not required for installation" ); 11 } 12 8 13 unless ( $ENV{DISPLAY} or $^O eq 'MSWin32' ) { 9 14 plan skip_all => 'Needs DISPLAY'; -
trunk/Padre/xt/11-pragmas.t
r9321 r10378 11 11 use Test::More; 12 12 use File::Find::Rule; 13 14 # Don't run tests for installs 15 unless ( $ENV{AUTOMATED_TESTING} or $ENV{RELEASE_TESTING} ) { 16 plan( skip_all => "Author tests not required for installation" ); 17 } 13 18 14 19 my @files = File::Find::Rule->name('*.pm')->file->in('lib'); -
trunk/Padre/xt/12-badcode.t
r10116 r10378 6 6 7 7 BEGIN { 8 # Don't run tests for installs 9 unless ( $ENV{AUTOMATED_TESTING} or $ENV{RELEASE_TESTING} ) { 10 plan( skip_all => "Author tests not required for installation" ); 11 } 12 8 13 unless ( $ENV{DISPLAY} or $^O eq 'MSWin32' ) { 9 14 plan( skip_all => 'Needs DISPLAY' ); -
trunk/Padre/xt/13-perl-beginner.t
r9334 r10378 61 61 use Data::Dumper qw(Dumper); 62 62 use File::Spec (); 63 64 # Don't run tests for installs 65 unless ( $ENV{AUTOMATED_TESTING} or $ENV{RELEASE_TESTING} ) { 66 plan( skip_all => "Author tests not required for installation" ); 67 } 63 68 64 69 # enable NoWarning if this is fixed -
trunk/Padre/xt/20-actions.t
r10072 r10378 18 18 plan skip_all => 'DISPLAY not set' 19 19 unless $ENV{DISPLAY} or ($^O eq 'MSWin32'); 20 21 # Don't run tests for installs 22 unless ( $ENV{AUTOMATED_TESTING} or $ENV{RELEASE_TESTING} ) { 23 plan( skip_all => "Author tests not required for installation" ); 24 } 20 25 21 26 my $devpl; -
trunk/Padre/xt/critic-core.t
r9443 r10378 9 9 10 10 BEGIN { 11 # Don't run tests for installs or automated tests 12 unless ( $ENV{RELEASE_TESTING} ) { 13 plan( skip_all => "Author tests not required for installation" ); 14 } 11 15 my $config = catfile('xt', 'critic-core.ini'); 12 16 unless ( eval "use Test::Perl::Critic -profile => '$config'; 1" ) { -
trunk/Padre/xt/critic-util.t
r9449 r10378 9 9 10 10 BEGIN { 11 # Don't run tests for installs or automated tests 12 unless ( $ENV{RELEASE_TESTING} ) { 13 plan( skip_all => "Author tests not required for installation" ); 14 } 11 15 my $config = catfile('xt', 'critic-util.ini'); 12 16 unless ( eval "use Test::Perl::Critic -profile => '$config'; 1" ) {
Note: See TracChangeset
for help on using the changeset viewer.
