From f3db55643c1138fd285ca6de37d1a9ab14fe2fbf Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 30 Jul 2020 11:59:44 +0200 Subject: [PATCH] Bug 25852: Add tests Signed-off-by: Kelly McElligott Signed-off-by: Katrin Fischer --- t/db_dependent/Creators/Lib.t | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/t/db_dependent/Creators/Lib.t b/t/db_dependent/Creators/Lib.t index 288257e7f8..4a86b5db0a 100644 --- a/t/db_dependent/Creators/Lib.t +++ b/t/db_dependent/Creators/Lib.t @@ -18,7 +18,7 @@ use Modern::Perl; use Graphics::Magick; -use Test::More tests => 646; +use Test::More tests => 647; use Test::MockModule; use t::lib::Mocks; use t::lib::TestBuilder; @@ -1099,6 +1099,11 @@ is( $label_types->[4]->{name}, 'Barcode', 'name is is( $label_types->[4]->{desc}, 'Only the barcode is printed.', 'desc is good' ); is( $label_types->[4]->{selected}, 0, 'selected is good' ); +$label_types->[0]->{selected} = 1; +$label_types = get_label_types(); +is( $label_types->[0]->{selected}, 0, 'get_label_types must returned a new structure (copied)' ); + + # ---------- Testing get_font_types ----------------------- my $font_types = get_font_types(); -- 2.11.0