]> git.sur5r.net Git - i3/i3/blob - testcases/t/000-load-deps.t
ab93233a23654f368c96d21a2bed6acdc119277e
[i3/i3] / testcases / t / 000-load-deps.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3
4 use Test::More;
5
6 BEGIN {
7     my @deps = qw(
8         X11::XCB::Connection
9         X11::XCB::Window
10         AnyEvent
11         AnyEvent::I3
12         IPC::Run
13         ExtUtils::PkgConfig
14         Inline
15         Test::More
16     );
17     for my $dep (@deps) {
18         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|);
19     }
20 }
21
22 done_testing;