File: Tests.t

package info (click to toggle)
libtest-class-perl 0.35-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 476 kB
  • ctags: 102
  • sloc: perl: 1,668; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 445 bytes parent folder | download | duplicates (5)
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
#! /usr/bin/perl

use strict;
use warnings;
use Test::More tests => 2;

{
    package My::Test;
    use base qw( Test::Class );
    use Test::More;
    
    sub Tests_attribute_default_number_of_tests :Tests {
        my $self = shift;
        is( $self->num_tests, 'no_plan' );
    };
    
    sub Tests_attribute_set_number_of_tests :Tests(1) {
        my $self = shift;
        is( $self->num_tests, 1 );
    };
    
};

My::Test->runtests;