File: export2.t

package info (click to toggle)
libspiffy-perl 0.21-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 256 kB
  • ctags: 99
  • sloc: perl: 1,067; makefile: 50
file content (25 lines) | stat: -rw-r--r-- 408 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
use lib 't';
use strict;
use warnings;
package A;
use Spiffy -base;
BEGIN {@A::EXPORT = qw($A1 $A2)}
$A::A1 = 5;
$A::A2 = 10;

package B;
use base 'A';
BEGIN {@B::EXPORT = qw($A2 $A3)}
$B::A2 = 15;
$B::A3 = 20;

package main;
use strict;
use Test::More tests => 6;
BEGIN {B->import}
ok(defined $main::A1);
ok(defined $main::A2);
ok(defined $main::A3);
is($main::A1, 5);
is($main::A2, 15);
is($main::A3, 20);