The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
BEGIN { unshift @INC, '/home/chris/dev/perlmods/git/kane/Acme-Comment/lib'; }

use strict;
use Test::More q[no_plan];

use Acme::Comment 1.01 type => "ALGOL", one_line => 1, own_line => 1;


SKIP: {
    ### Test 4 ###
    my $four = 4;

    'comment' $four= 5; ;

    ### Check Test 1 ###
    is($four, 4, "ALGOL => own_line: 1, one_line: 1: Standard Multiline");



    ### Test 5 ###
    my $five = 5;

    'comment' $five = 7; 'comment' $five = 8; ; $five = 9; ;

    ### Check Test 5 ###
    is($five, 5, "ALGOL => own_line: 1, one_line: 1: Nested Multiline");


    ### Test 6 ###
    eval {
        'comment' this should break ;
        1;
    };

    ### Check 6 ###
    ok(!$@, "ALGOL => own_line: 1, one_line: 1: Broken Syntax Ignored Multiline");
}
### Test 7 ###
my $seven = 7;

'comment'
    $seven = 8;
;

### Check Test 7 ###
is($seven, 7, "ALGOL => own_line: 1, one_line: 1: Standard Multiline");



### Test 8 ###
my $eight = 8;

'comment'
    $eight = 9;
    'comment'
        $eight = 10;
    ;
    $eight = 11;
;

### Check Test 8 ###
is($eight, 8, "ALGOL => own_line: 1, one_line: 1: Nested Multiline");

### Test 9 ###
eval {
    'comment'
        this should break
    ;
    1;
};

### Check 9 ###
ok(!$@, "ALGOL => own_line: 1, one_line: 1: Broken Syntax Ignored Multiline");