File: autoclean.t

package info (click to toggle)
libobject-id-perl 0.1.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 188 kB
  • sloc: perl: 289; makefile: 2
file content (17 lines) | stat: -r--r--r-- 311 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl

use strict;
use warnings;
use lib 't/lib';

use Test::More;

plan skip_all => 'namespace::autoclean not available'
    unless eval { require namespace::autoclean; 1 };

require AutoCleanWidget;

my $widget = new_ok('AutoCleanWidget');
can_ok($widget, qw<object_id object_uuid>);

done_testing;