optionalize DwarnN test
[p5sagit/Data-Dumper-Concise.git] / t / sugar.t
CommitLineData
884bc377 1use strict;
2use warnings;
3use Data::Dumper::Concise::Sugar;
4
5use Data::Dumper::Concise ();
6
7use Test::More qw(no_plan);
884bc377 8
caf571f8 9my $warned_string;
884bc377 10
caf571f8 11BEGIN {
12 $SIG{'__WARN__'} = sub {
13 $warned_string = $_[0]
14 }
15}
884bc377 16
e6746e64 17DWARNL: {
18 my @foo = DwarnL 'warn', 'friend';
19 is $warned_string,qq{"warn"\n"friend"\n}, 'DwarnL warns';
884bc377 20
e6746e64 21 ok eq_array(\@foo, ['warn','friend']), 'DwarnL passes through correctly';
22}
23
24DWARNS: {
25 my $bar = DwarnS 'robot',2,3;
26 is $warned_string,qq{"robot"\n}, 'DwarnS warns';
27 is $bar, 'robot', 'DwarnS passes through correctly';
28}
caf571f8 29
e6746e64 30DWARN: {
31 my @foo = Dwarn 'warn', 'friend';
32 is $warned_string,qq{"warn"\n"friend"\n}, 'Dwarn warns lists';
33
34 ok eq_array(\@foo, ['warn','friend']), 'Dwarn passes lists through correctly';
35
36 my $bar = Dwarn 'robot',2,3;
37 is $warned_string,qq{"robot"\n}, 'Dwarn warns scalars correctly';
38 is $bar, 'robot', 'Dwarn passes scalars through correctly';
39}
0deeb75f 40
7194c025 41DWARN_CODEREF: {
42 my $foo = ['warn', 'friend']->$Dwarn;
43 is $warned_string,qq{[\n "warn",\n "friend"\n]\n}, 'Dwarn warns lists';
44
45 ok eq_array($foo, ['warn','friend']), 'Dwarn passes lists through correctly';
46}
47
0deeb75f 48DWARNN: {
452e7ff2 49 my $loaded = eval { require Devel::ArgNames; 1 };
50 if ($loaded) {
51 my $x = [1];
52 my $foo = DwarnN $x;
53 is $warned_string, qq{\$x => [\n 1\n]\n}, 'DwarnN warns';
0deeb75f 54
452e7ff2 55 ok eq_array($foo, [1]), 'DwarnN passes through correctly';
0deeb75f 56
452e7ff2 57 DwarnN [1];
58 is $warned_string, qq{(anon) => [\n 1\n]\n}, 'DwarnN warns';
59 }
0deeb75f 60}
61