File: constants.t

package info (click to toggle)
libbadger-perl 0.16-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,400 kB
  • sloc: perl: 11,004; makefile: 9
file content (52 lines) | stat: -rw-r--r-- 1,384 bytes parent folder | download
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#============================================================= -*-perl-*-
#
# t/core/constants.t
#
# Test the Badger::Constants module.
#
# Written by Andy Wardley <abw@wardley.org>
#
# This is free software; you can redistribute it and/or modify it
# under the same terms as Perl itself.
#
#========================================================================

use strict;
use warnings;
use lib qw( ./lib ../lib ../../lib );
use Badger::Constants ':types';
use Badger::Test 
    tests => 7,
    debug => 'Badger::Constants',
    args  => \@ARGV;


ok(1, 'loaded Badger::Constants' );
is( HASH, Badger::Constants::HASH, 'HASH is ' . HASH );


#-----------------------------------------------------------------------
# test WILDCARD and DELIMITER
#-----------------------------------------------------------------------

use Badger::Constants 'WILDCARD DELIMITER';

  like( '*.html',     WILDCARD, '*.html matched by WILDCARD' );
  like( 'foo.*',      WILDCARD, 'foo.* matched by WILDCARD' );
  like( 'foo??.html', WILDCARD, 'foo??.html matched by WILDCARD' );
unlike( 'foo.html',   WILDCARD, 'foo.html NOT matched by WILDCARD' );

my @stuff = split DELIMITER, 'foo bar,baz, bam';
is( join('|', @stuff), 'foo|bar|baz|bam', 'split using DELIMITER' );



__END__

# Local Variables:
# mode: perl
# perl-indent-level: 4
# indent-tabs-mode: nil
# End:
#
# vim: expandtab shiftwidth=4: