File: 99-cleanup.t

package info (click to toggle)
libnet-dns-perl 1.50-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,644 kB
  • sloc: perl: 18,185; makefile: 9
file content (19 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/perl
# $Id: 99-cleanup.t 1880 2022-10-04 13:42:34Z willem $ -*-perl-*-
#

use strict;
use warnings;

use Test::More;
plan tests => 1;

diag("Cleaning");

unlink("t/online.disabled") if ( -e "t/online.disabled" );
unlink("t/IPv6.disabled")   if ( -e "t/IPv6.disabled" );

ok( 1, "Dummy" );


exit;