From 981b2482e8f1ff4b84680c381009b63021bd3ebe Mon Sep 17 00:00:00 2001 From: Steve Hancock Date: Mon, 19 Jul 2021 19:32:59 -0700 Subject: [PATCH] add test case b1178 --- dev-bin/run_convergence_tests.pl.data | 30 +++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dev-bin/run_convergence_tests.pl.data b/dev-bin/run_convergence_tests.pl.data index 988f9b5a..a731b171 100644 --- a/dev-bin/run_convergence_tests.pl.data +++ b/dev-bin/run_convergence_tests.pl.data @@ -6637,6 +6637,36 @@ my $json_response --indent-columns=8 --maximum-line-length=40 +==> b1178.in <== +# S1 +use Modern::Perl; +use CGI qw ( -utf8 ); +use Koha::FrameworkPlugin; +my $input = CGI->new; +my $plugin = + Koha::FrameworkPlugin->new( { + name => scalar $input->param("plugin_name"), + } ); + +# S2 +use Modern::Perl; +use CGI qw ( -utf8 ); +use Koha::FrameworkPlugin; +my $input = CGI->new; +my $plugin = Koha::FrameworkPlugin->new( { + + name => scalar $input->param("plugin_name"), +} ); + + +==> b1178.par <== +--ignore-old-breakpoints +--indent-columns=10 +--keep-old-blank-lines=0 +--keyword-group-blanks-after=2 +--maximum-line-length=55 +--weld-nested-containers + ==> b120.in <== # Same as bug96 # State 1 -- 2.39.5