i3/testcases/t/000-load-deps.t
Michael Stapelberg 7ad32fd2d1 tests: replace http:// with https:// where appropriate
This was done automatically using:

% sed -i 's,http://build.i3wm.org,https://build.i3wm.org,g' testcases/t/*.t
2017-09-24 10:19:50 +02:00

21 lines
431 B
Perl

#!perl
# vim:ts=4:sw=4:expandtab
use Test::More;
BEGIN {
my @deps = qw(
X11::XCB::Connection
X11::XCB::Window
AnyEvent
IPC::Run
ExtUtils::PkgConfig
Inline
);
for my $dep (@deps) {
use_ok($dep) or BAIL_OUT(qq|The Perl module "$dep" could not be loaded. Please see https://build.i3wm.org/docs/testsuite.html#_installing_the_dependencies|);
}
}
done_testing;