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
|
#!/usr/bin/perl -w
use strict;
use Test::More tests => 13;
{
package Bar;
sub new {
my $class = shift;
return bless {@_}, $class;
}
package Foo;
our @ISA = qw(Bar);
}
{
my $obj = new_ok("Foo");
is_deeply $obj, {};
isa_ok $obj, "Foo";
$obj = new_ok("Bar");
is_deeply $obj, {};
isa_ok $obj, "Bar";
$obj = new_ok("Foo", [this => 42]);
is_deeply $obj, { this => 42 };
isa_ok $obj, "Foo";
$obj = new_ok("Foo", [], "Foo");
is_deeply $obj, {};
isa_ok $obj, "Foo";
}
# And what if we give it nothing?
eval {
new_ok();
};
my $error = $@;
$error =~ s/\.?\n.*$//gsm;
is $error, sprintf "new_ok() must be given at least a class at %s line %d", $0, __LINE__ - 4;
|