File: 01-bdd-cucumber.t

package info (click to toggle)
libnet-ldapapi-perl 3.0.7-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 576 kB
  • sloc: perl: 3,913; ansic: 9; makefile: 8
file content (37 lines) | stat: -rw-r--r-- 1,077 bytes parent folder | download | duplicates (6)
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
33
34
35
36
37
#!/usr/bin/perl
 
BEGIN {
  require './t/test-config.pl';
  if (!$RunDeveloperTests) {
    print "1..0 # Skipped: Developer tests are not enabled";
  
    exit;
  }   
};


use strict;
use warnings;
use Devel::Cover;
use Test::More;

# This will find step definitions and feature files in the directory you point
# it at below
use Test::BDD::Cucumber::Loader;
 
# This harness prints out nice TAP
use Test::BDD::Cucumber::Harness::TestBuilder;
 
# Load a directory with Cucumber files in it. It will recursively execute any
# file matching .*_steps.pl as a Step file, and .*\.feature as a feature file.
# The features are returned in @features, and the executor is created with the
# step definitions loaded.
my ( $executor, @features ) = Test::BDD::Cucumber::Loader->load(
       't/features/' );
 
# Create a Harness to execute against. TestBuilder harness prints TAP
my $harness = Test::BDD::Cucumber::Harness::TestBuilder->new({});
 
# For each feature found, execute it, using the Harness to print results
$executor->execute( $_, $harness ) for @features;
done_testing();