blob: fc299003b4e6b082b44f83a61d7ae34cf31348be (
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') };
|