File: 10-basics.t

package info (click to toggle)
libtest-checkdeps-perl 0.010-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 144 kB
  • sloc: perl: 87; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 381 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! perl

use strict;
use warnings;

use Test::More 0.88;
use List::Util qw/first/;

# we need a META.json to do anything
ok(first { -e $_ } qw/MYMETA.json MYMETA.yml META.json META.yml/, 'META.* found')
	or diag 'this test requires a built dist - you must run "dzil test"';

use Test::CheckDeps;

check_dependencies('recommends');

done_testing;
# vim: set ts=2 sw=2 noet nolist :