line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
############################################################################# |
2
|
|
|
|
|
|
|
# $URL: http://perlcritic.tigris.org/svn/perlcritic/tags/TAP-Formatter-TeamCity-0.04/lib/TAP/Formatter/Session/TeamCity.pm $ |
3
|
|
|
|
|
|
|
# $Date: 2009-09-09 13:03:47 -0700 (Wed, 09 Sep 2009) $ |
4
|
|
|
|
|
|
|
# $Author: thaljef $ |
5
|
|
|
|
|
|
|
# $Revision: 3641 $ |
6
|
|
|
|
|
|
|
############################################################################# |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
package TAP::Formatter::Session::TeamCity; |
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
6
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
38
|
|
11
|
1
|
|
|
1
|
|
7
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
42
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
#----------------------------------------------------------------------------- |
14
|
|
|
|
|
|
|
|
15
|
1
|
|
|
1
|
|
9
|
use base qw(TAP::Formatter::Session); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
1149
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
#----------------------------------------------------------------------------- |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
our $VERSION = '0.04'; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
#---------------------------------------------------------------------------- |
22
|
|
|
|
|
|
|
1; |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=pod |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 NAME |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
TAP::Formatter::Session::TeamCity - A session of TeamCity service messages |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 DESCRIPTION |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
L is the Session delegate used by |
33
|
|
|
|
|
|
|
L. Since TeamCity takes care of tabulating and |
34
|
|
|
|
|
|
|
summarizing test results for you, there is no particular session-level |
35
|
|
|
|
|
|
|
reporting that is required. So this is basically just the minimal |
36
|
|
|
|
|
|
|
L. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 AUTHOR |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Jeffrey Ryan Thalhammer |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 COPYRIGHT |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Copyright (c) 2009 Imaginative Software Systems. All rights reserved. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify |
47
|
|
|
|
|
|
|
it under the same terms as Perl itself. The full text of this license |
48
|
|
|
|
|
|
|
can be found in the LICENSE file included with this module. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=cut |