File: MasonTidy.pm

package info (click to toggle)
libcode-tidyall-perl 0.83~ds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,036 kB
  • sloc: perl: 5,240; lisp: 47; makefile: 2; sh: 1
file content (43 lines) | stat: -rw-r--r-- 1,200 bytes parent folder | download | duplicates (2)
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
package TestFor::Code::TidyAll::Plugin::MasonTidy;

use Test::Class::Most parent => 'TestFor::Code::TidyAll::Plugin';

use Module::Runtime qw( require_module );
use Try::Tiny;

BEGIN {
    for my $mod (qw( Mason::Tidy )) {
        unless ( try { require_module($mod); 1 } ) {
            __PACKAGE__->SKIP_CLASS("This test requires the $mod module");
            return;
        }
    }
}

sub test_main : Tests {
    my $self = shift;

    my $source = "%if(\$foo) {\n%bar(1,2);\n%}";
    $self->tidyall(
        source      => $source,
        conf        => { argv => '-m 1' },
        expect_tidy => "% if (\$foo) {\n%     bar( 1, 2 );\n% }",
    );
    $self->tidyall(
        source      => $source,
        conf        => { argv => q{-m 1 --perltidy-argv="-pt=2 -i=3"} },
        expect_tidy => "% if (\$foo) {\n%    bar(1, 2);\n% }",
    );
    $self->tidyall(
        source      => $source,
        conf        => { argv => q{-m 2 --perltidy-line-argv=" "} },
        expect_tidy => "% if (\$foo) {\n%     bar( 1, 2 );\n% }",
    );
    $self->tidyall(
        source       => $source,
        conf         => { argv => '-m 1 --badoption' },
        expect_error => qr/Usage/,
    );
}

1;