Changeset 3772 in MondoRescue


Ignore:
Timestamp:
Jun 17, 2020, 2:27:12 AM (4 years ago)
Author:
Bruno Cornec
Message:

Fix test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3/MondoRescue/t/01-read-all-link.t

    r3262 r3772  
    6767# Test::More not found so simpler test
    6868if ($@) {
    69         require Test;
     69    $more = 0;
     70    eval {
     71        require Test;
    7072        Test->import();
    71         $more = 0;
    72         plan(tests => 12);
     73    };
     74    if ($@) {
     75        require Test::Simple;
     76        Test::Simple->import();
     77    }
    7378}
     79plan(tests => 12);
     80
    7481    # Got, expected, comment
    7582myis($h->{"$bd/usr/bin/toto"}->{"$bd/usr/bin/toto"}, 1, "File link in same dir to itself");
Note: See TracChangeset for help on using the changeset viewer.