File: Workflow_Fennec.ft

package info (click to toggle)
libfennec-perl 2.018-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 384 kB
  • sloc: perl: 2,083; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 334 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
package TEST::Test::Workflow;
use strict;
use warnings;

use lib 't/lib';
use Fennec parallel => 0, test_sort => 'sort', with_tests => ['WorkflowTest'];

can_ok( __PACKAGE__, qw/describe it before_each after_each before_all after_all/ );

is( @{TEST_WORKFLOW->root_layer->child}, 2, "Loaded tests from WorkflowTest" );

done_testing;