/usr/lib/perl5/PDL/Tests.pm is in pdl 1:2.007-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | #
# GENERATED WITH PDL::PP! Don't modify!
#
package PDL::Tests;
@EXPORT_OK = qw( PDL::PP test_foop PDL::PP test_fsumover PDL::PP test_nsumover PDL::PP test_setdim PDL::PP test_fooseg PDL::PP test_fooflow1 PDL::PP test_fooflow2 PDL::PP test_fooflow3 );
%EXPORT_TAGS = (Func=>[@EXPORT_OK]);
use PDL::Core;
use PDL::Exporter;
use DynaLoader;
@ISA = ( 'PDL::Exporter','DynaLoader' );
push @PDL::Core::PP, __PACKAGE__;
bootstrap PDL::Tests ;
=head1 NAME
PDL::Tests - tests for some PP features
=head1 SYNOPSIS
use PDL::Tests;
<test code>
=head1 DESCRIPTION
This module provides some PP defined test functions that are
supposed to test some features/bugs of PDL::PP.
Strictly speaking this module shouldn't be installed with a
'make install' but I haven't yet worked out how to do it.
=cut
=head1 DEPRECATION NOTICE
PDL::Tests is deprecated. Please use PDL::Test::Fancy instead.
A warning will be generated at runtime upon a C<use> of this module
This warning can be suppressed by setting the PDL_SUPPRESS_DEPRECATION_WARNING__PDL_TESTS
environment variable
=cut
warn "PDL::Tests is deprecated. Please use PDL::Test::Fancy instead.
This module will be removed in the future; please update your code.
Set the environment variable PDL_SUPPRESS_DEPRECATION_WARNING__PDL_TESTS
to suppress this warning
" unless $ENV{PDL_SUPPRESS_DEPRECATION_WARNING__PDL_TESTS};
*test_foop = \&PDL::test_foop;
*test_fsumover = \&PDL::test_fsumover;
*test_nsumover = \&PDL::test_nsumover;
*test_setdim = \&PDL::test_setdim;
*test_fooseg = \&PDL::test_fooseg;
*test_fooflow1 = \&PDL::test_fooflow1;
*test_fooflow2 = \&PDL::test_fooflow2;
*test_fooflow3 = \&PDL::test_fooflow3;
;
# Exit with OK status
1;
|