View | Details | Raw Unified | Return to bug 12844
Collapse All | Expand All

(-)a/t/Number/Price.t (-1 / +2 lines)
Lines 17-22 $currency = { Link Here
17
    symbol   => '$',
17
    symbol   => '$',
18
    rate     => 1,
18
    rate     => 1,
19
    active   => 1,
19
    active   => 1,
20
    p_cs_precedes => 1, # Force to place the symbol at the beginning
20
};
21
};
21
22
22
is( Koha::Number::Price->new->format,    '0.00', 'US: format 0' );
23
is( Koha::Number::Price->new->format,    '0.00', 'US: format 0' );
Lines 46-51 $currency = { Link Here
46
    symbol   => '€',
47
    symbol   => '€',
47
    rate     => 1,
48
    rate     => 1,
48
    active   => 1,
49
    active   => 1,
50
    p_cs_precedes => 1,
49
};
51
};
50
52
51
# Actually,the price formating for France is 3,00€
53
# Actually,the price formating for France is 3,00€
52
- 

Return to bug 12844