File Coverage

blib/lib/Test/OpenTracing/Interface/Scope.pm
Criterion Covered Total %
statement 19 19 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 1 1 100.0
total 26 26 100.0


line stmt bran cond sub pod time code
1             package Test::OpenTracing::Interface::Scope;
2              
3             =head1 NAME
4              
5             Test::OpenTracing::Interface::Scope - compliance testing
6              
7             =head1 SYNOPSIS
8              
9             use Test::OpenTracing::Interface::Scope qw/:all/;
10            
11             can_all_ok 'MyImplementation::Scope',
12             "MyImplementation class does have all subs defined, well done!";
13            
14             my $test_thing = MyImplementation::Scope->new( ... );
15            
16             can_all_ok( $test_thing,
17             "An object constructed by 'new' has all required subs defined"
18             );
19              
20             =cut
21              
22 3     3   377785 use strict;
  3         33  
  3         97  
23 3     3   16 use warnings;
  3         6  
  3         139  
24              
25             our $VERSION = '0.03_001';
26              
27              
28 3     3   1259 use Test::OpenTracing::Interface;
  3         13  
  3         155  
29              
30 3     3   26 use Exporter qw/import/;
  3         8  
  3         232  
31              
32             our @EXPORT_OK = qw/can_all_ok/;
33             our %EXPORT_TAGS = ( all => [qw/can_all_ok/] );
34              
35 3     3   1487 use syntax qw/maybe/;
  3         64252  
  3         22  
36              
37              
38              
39             =head1 DESCRIPTION
40              
41             This package will provide the tests as described in
42             L.
43              
44              
45              
46             =head1 EXPORTED SUBROUTINES
47              
48             =cut
49              
50              
51              
52             =head2 C
53              
54             Test that all methods mentioned in L
55             are defined.
56              
57             =cut
58              
59             sub can_all_ok {
60 3     3 1 9228 my $thing = shift;
61 3         9 my $message = shift;
62            
63 3         54 my $Test = Test::OpenTracing::Interface::CanAll->new(
64             test_this => $thing,
65             interface_name => 'Scope',
66             interface_methods => [
67             'close',
68             'get_span',
69             ],
70             maybe
71             message => $message,
72             );
73            
74 3         3532 return $Test->run_tests;
75             }
76              
77              
78              
79             =head1 SEE ALSO
80              
81             =over
82              
83             =item L
84              
85             Test OpenTracing::Interface compliance.
86              
87             =item L
88              
89             Defines the ContextReference.
90              
91             =back
92              
93              
94              
95             =head1 AUTHOR
96              
97             Theo van Hoesel
98              
99              
100              
101             =head1 COPYRIGHT AND LICENSE
102              
103             'Test OpenTracing' is Copyright (C) 2020, Perceptyx Inc
104              
105             This library is free software; you can redistribute it and/or modify it under
106             the terms of the Artistic License 2.0.
107              
108             This library is distributed in the hope that it will be useful, but it is
109             provided "as is" and without any express or implied warranties.
110              
111             For details, see the full text of the license in the file LICENSE.
112              
113              
114              
115             =cut
116              
117             1;