File: simple_RESULT.t

package info (click to toggle)
libcontextual-return-perl 0.003001-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 324 kB
  • ctags: 52
  • sloc: perl: 1,187; makefile: 2
file content (52 lines) | stat: -rw-r--r-- 1,430 bytes parent folder | download | duplicates (6)
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
use Contextual::Return;

sub bar {
    return 'in bar';
}

sub foo {
    return
        BOOL      { RESULT { 0 }; undef }
        LIST      { RESULT { 1,2,3 }; undef }
        NUM       { RESULT { 42 }; undef }
        STR       { RESULT { 'forty-two' }; undef }
        SCALAR    { RESULT { 86 }; undef }
        SCALARREF { RESULT { \7 }; undef }
        HASHREF   { RESULT { { name => 'foo', value => 99} }; undef }
        ARRAYREF  { RESULT { [3,2,1] }; undef }
        GLOBREF   { RESULT { \*STDERR }; undef }
        CODEREF   { RESULT { \&bar }; undef }
    ;
}

package Other;
use Test::More 'no_plan';

is_deeply [ ::foo() ], [1,2,3]                  => 'LIST context';

is do{ ::foo() ? 'true' : 'false' }, 'false'    => 'BOOLEAN context';

is 0+::foo(), 42                                => 'NUMERIC context';

is "".::foo(), 'forty-two'                      => 'STRING context';

is ${::foo}, 7                                  => 'SCALARREF context';

is_deeply \%{::foo()},
          { name => 'foo', value => 99}         => 'HASHREF context';

is_deeply \@{::foo()}, [3,2,1]                  => 'ARRAYREF context';

is \*{::foo()}, \*STDERR                        => 'GLOBREF context';

is ::foo->(), 'in bar'                          => 'ARRAYREF context';


use Contextual::Return;

sub bar {
    NUM { 42 }
    RECOVER { RESULT { RESULT()+1 } }
}

is 0+bar(), 43,                                 => 'RESULT()';