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

my $noreplace = 'debian/dh-runit-test/usr/share/runit/meta/test/noreplace';
ok(-f $noreplace, 'noreplace file correctly created');
my $logscript = 'debian/dh-runit-test/etc/sv/test/log/run';
ok(-f $logscript, 'logscript correctly created');
ok(-x $logscript, 'logscript is executable');
