i3/testcases/t/000-load-deps.t
Michael Stapelberg 363417e010 tests: remove the (broken) exit_gracefully check
I previously tried to fix the check, but could only come up with a fix which
required removing our module pre-loading, which makes the tests considerably
more expensive. Instead, let’s just remove the check.
2017-09-14 21:46:20 +02:00

21 lines
430 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 http://build.i3wm.org/docs/testsuite.html#_installing_the_dependencies|);
}
}
done_testing;