@@ -, +, @@ 1..2 ok 1 - Correct development version ok 2 - Correct maintenance version --- t/Koha_Template_Plugin_Koha.t | 2 ++ 1 file changed, 2 insertions(+) --- a/t/Koha_Template_Plugin_Koha.t +++ a/t/Koha_Template_Plugin_Koha.t @@ -52,6 +52,7 @@ subtest "Koha::Template::Plugin::Koha::Version tests" => sub { my $res = Koha::Template::Plugin::Koha::Version( $version ); is_deeply( $res, { major => $major, + minor => $minor, release => $major . "." . $minor, maintenance => $major . "." . $minor . "." . $maintenance, development => $development @@ -67,6 +68,7 @@ subtest "Koha::Template::Plugin::Koha::Version tests" => sub { $res = Koha::Template::Plugin::Koha::Version( $version ); is_deeply( $res, { major => $major, + minor => $minor, release => $major . "." . $minor, maintenance => $major . "." . $minor . "." . $maintenance, development => undef --