#!/usr/bin/env perl
use feature ':5.10';
use lib 'lib';
use File::Path qw(rmtree mkpath);
# default template
my $deploy = Apache::SiteConfig::Deploy->new;
$deploy->{args} = {
name => 'foo',
domain => 'foo.com',
domain_alias => 'bar.com',
sites_dir => 'testing_root',
};
$deploy->deploy();
ok( -e 'testing_root/foo' );
rmtree 'testing_root';
done_testing;