aboutsummaryrefslogtreecommitdiffstats
path: root/t/00prepare.t
blob: 7261e483fe076ce480a2e889f0373cd60124a9ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl

use strict;
use warnings;
use Test::More tests => 1;
use Cwd;

chdir 't' if -d 't';
for (qw(BUILD RPMS RPMS/noarch tmp)) {
    mkdir $_;
}
# locally build a test rpm
system(rpmbuild => '--define', '_topdir .', '--define', '_tmppath ' . Cwd::cwd() . '/tmp/', '-bb', '../test-rpm.spec');
ok( -f 'RPMS/noarch/test-rpm-1.0-1mdk.noarch.rpm', 'rpm created' );

END { system('rm -rf BUILD tmp') };