1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-24 07:39:39 +02:00

Add formatting for EUR locales (#1231)

* Add formatting for EUR locales

* Fix formatting assertion for EUR in english locales
This commit is contained in:
Zach Gollwitzer 2024-10-03 10:25:38 -04:00 committed by GitHub
parent ab40289eb4
commit 82c298307d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 42 additions and 59 deletions

View file

@ -85,8 +85,8 @@ class MoneyTest < ActiveSupport::TestCase
end
test "can cast to string with basic formatting" do
assert_equal "$1,000.90", Money.new(1000.899).format
assert_equal "€1.000,12", Money.new(1000.12, :eur).format
assert_equal "$1,000.90", Money.new(1000.899).to_s
assert_equal "€1.000,12", Money.new(1000.12, :eur).to_s
end
test "converts currency when rate available" do