File: private.t

package info (click to toggle)
libgeo-libproj-ffi-perl 1.01-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 304 kB
  • sloc: perl: 1,339; makefile: 11
file content (33 lines) | stat: -rw-r--r-- 744 bytes parent folder | download
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
#!perl
use strict;
use warnings;
use lib 'lib';

use Test::More;
use Test::Exception;
my $no_warnings;
use if $no_warnings = $ENV{AUTHOR_TESTING} ? 1 : 0, 'Test::Warnings';

# non-API functions
# (not exported through :all)

plan tests => 6 + $no_warnings;

use Geo::LibProj::FFI qw( :all );


my ($p, $a);


# _trans

lives_and { ok $p = proj_create_crs_to_crs(0, "EPSG:4326", "EPSG:25833", 0) } 'create_crs_to_crs';
$a = [ 79, 12, 0, 0 ];
dies_ok { _trans( $p, PJ_FWD(), $a ) } 'trans not exported';
lives_and { ok $a = Geo::LibProj::FFI::_trans( $p, PJ_FWD(), $a ) } 'trans';
lives_and { like $a->[0], qr/^43612.\./ } 'easting';
lives_and { like $a->[1], qr/^877161.\./ } 'northing';
lives_ok { proj_destroy($p) } 'destroy';


done_testing;