File: Workflow.t

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 (19 lines) | stat: -rw-r--r-- 352 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package TEST::Test::Workflow;
use strict;
use warnings;

use Test::More;
use Test::Workflow;
test_sort 'sort';

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

use lib 't/lib';
with_tests 'WorkflowTest';

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

run_tests;
done_testing;

1;