3 use Test::More tests => 19;
9 my $budget_module = Test::MockModule->new('C4::Budgets');
11 $budget_module->mock( 'GetCurrency', sub { return $currency; } );
12 use_ok('Koha::Number::Price');
15 p_cs_precedes => 1, # Force to place the symbol at the beginning
16 p_sep_by_space => 0, # Force to not add a space between the symbol and the number
18 t::lib::Mocks::mock_preference( 'CurrencyFormat', 'US' );
26 is( Koha::Number::Price->new->format( $format ), '0.00', 'US: format 0' );
27 is( Koha::Number::Price->new(3)->format( $format ), '3.00', 'US: format 3' );
28 is( Koha::Number::Price->new(1234567890)->format( $format ),
29 '1,234,567,890.00', 'US: format 1234567890' );
31 # FIXME This should be display symbol, but it was the case before the creation of this module
32 is( Koha::Number::Price->new->format( { %$format, with_symbol => 1 } ),
33 '0.00', 'US: format 0 with symbol' );
34 is( Koha::Number::Price->new(3)->format( { %$format, with_symbol => 1 } ),
35 '3.00', 'US: format 3 with symbol' );
37 Koha::Number::Price->new(1234567890)
38 ->format( { %$format, with_symbol => 1 }, 'US: format 1234567890 with symbol' ),
42 is( Koha::Number::Price->new->unformat, '0', 'US: unformat 0' );
43 is( Koha::Number::Price->new(3)->unformat, '3', 'US: unformat 3' );
44 is( Koha::Number::Price->new(1234567890)->unformat,
45 '1234567890', 'US: unformat 1234567890' );
47 t::lib::Mocks::mock_preference( 'CurrencyFormat', 'FR' );
55 # Actually,the price formating for France is 3,00€
56 # How put the symbol at the end with Number::Format?
57 is( Koha::Number::Price->new->format( $format ), '0,00', 'FR: format 0' );
58 is( Koha::Number::Price->new(3)->format( $format ), '3,00', 'FR: format 3' );
60 Koha::Number::Price->new(1234567890)->format( $format ),
62 'FR: format 1234567890'
64 is( Koha::Number::Price->new->format( { %$format, with_symbol => 1 } ),
65 '€0,00', 'FR: format 0 with symbol' );
66 is( Koha::Number::Price->new(3)->format( { %$format, with_symbol => 1 } ),
67 '€3,00', 'FR: format 3 with symbol' );
69 Koha::Number::Price->new(1234567890)
70 ->format( { %$format, with_symbol => 1 }, 'FR: format 123567890 with symbol' ),
74 is( Koha::Number::Price->new->unformat, '0', 'FR: unformat 0' );
75 is( Koha::Number::Price->new(3)->unformat, '3', 'FR: unformat 3' );
76 is( Koha::Number::Price->new(1234567890)->unformat,
77 '1234567890', 'FR: unformat 1234567890' );