aboutsummaryrefslogtreecommitdiffstats
path: root/t/05-rpmnew.t
blob: d0d16735bc83ac1aa7c959010c169b7cfaa2e94b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
use 5.006;
use strict;
use warnings FATAL => 'all';
use Test::More;

BEGIN {
    use_ok( 'ManaTools::Rpmdragora::rpmnew' ) || print "ManaTools::Rpmdragora::rpmnew failed!\n";
}


SKIP: {
    #remember to skip the righ number of tests
    skip "To enable dialog tests set TEST_GUI", 1, unless $ENV{TEST_GUI};

    open (MYFILE, '>/tmp/_rpmnew_test');
        print MYFILE "value = 1\n";
        print MYFILE "value1 = 2\n";
        close (MYFILE);
    open (MYFILE, '>/tmp/_rpmnew_test.rpmnew');
        print MYFILE "value = 2\n";
        print MYFILE "value1 = 1\n";
        close (MYFILE);

    is( ManaTools::Rpmdragora::rpmnew::rpmnew_dialog("Test rpmnew dialog", (
        test_package  => ["/tmp/_rpmnew_test", "/tmp/rpmnew_test"],
        test_package2 => ["/tmp/tp2"],
    )), 0, 'rpmnew');

}


done_testing;