Make tests more reliable
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 7 Oct 2017 18:50:37 +0000 (19:50 +0100)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 7 Oct 2017 18:50:37 +0000 (19:50 +0100)
t/WebService-Vichan.t

index 68bb76a79b4729e5156837d46d915bcf91ce470c..c5ecbcfc035d1263a1bed9643e2fd7b05311c86e 100644 (file)
@@ -43,7 +43,8 @@ for my $url (@URLS) {
 
        my $catalog3 = $catalog_flat[2];
        my $catalog3no = $catalog3->no;
-       ok defined $catalog3->com, 'catalog entry has content';
+       my $has_content = defined $catalog3->com || defined $catalog3->filename;
+       ok $has_content, "third entry in catalog of board $boardcode has content";
 
        my @posts = $chan->thread($board, $catalog3);
        ok @posts > 0, "thread $catalog3no has posts";
This page took 0.010729 seconds and 4 git commands to generate.