File: 03args.t

package info (click to toggle)
libpragmatic-perl 1.7-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 92 kB
  • sloc: perl: 45; makefile: 2
file content (38 lines) | stat: -rw-r--r-- 490 bytes parent folder | download | duplicates (3)
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
# Emacs, this is -*- perl -*- code.

BEGIN { use Test; plan tests => 5; }

use strict;

use Test;

# Test 1:
eval join '', <DATA>;
ok (not $@);

# Test 2, 3:
eval { import X qw (-abc); };
ok (not $@);
ok ($X::DEBUG, 0);

# Test 4, 5:
eval { import X qw (-abc=fox); };
ok (not $@);
ok ($X::DEBUG, 'fox');

__DATA__

package X;

use strict;
use vars qw($DEBUG @ISA %PRAGMATA);

require Pragmatic;

$DEBUG = 0;

@ISA = qw(Pragmatic);

%PRAGMATA = (abc => sub { $DEBUG = $_[1] || 0; 1; });

1;