#!/usr/bin/perl
use strict;
use warnings;
use Test::More tests => 3;
use File::stat;

my $svdir = 'debian/dh-runit-test/etc/sv/test';
ok(-x "${svdir}/run", "{svdir}/run correctly set executable");
ok(-x "${svdir}/check", "{svdir}/check correctly set executable");
ok(-x "${svdir}/control/u", "{svdir}/control/u correctly set executable");

