File: 02_regression.t

package info (click to toggle)
libio-file-withpath-perl 0.09-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 192 kB
  • sloc: perl: 1,888; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 300 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use strict;
use Test::More;

use IO::File::WithPath;
use FindBin;
use File::Spec;
my $script_path = File::Spec->rel2abs("$FindBin::Bin/02_regression.t");

my $io = IO::File::WithPath->new($script_path);

# hmm, internal impl check
is ${*$io}{'IO::File::WithPath'} => $script_path;

done_testing();