File: taint.t

package info (click to toggle)
libtest-tempdir-tiny-perl 0.018-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 192 kB
  • sloc: perl: 280; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 185 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
use Test::TempDir::Tiny;

plan tests => 1;

my $work_dir = tempdir();

ok(-d $work_dir, 'Check if directory is created');