1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-22 22:59:39 +02:00
Maybe/test/initializers/string_extensions_test.rb

20 lines
581 B
Ruby
Raw Normal View History

# test/string_extensions_test.rb
require "test_helper"
class StringExtensionsTest < ActiveSupport::TestCase
test "#unit returns the currency unit for a given currency code" do
assert_equal "$", "USD".unit
assert_equal "", "EUR".unit
end
test "#separator returns the currency separator for a given currency code" do
assert_equal ".", "USD".separator
assert_equal ",", "EUR".separator
end
test "#precision returns the currency's precision for a given currency code" do
assert_equal 2, "USD".precision
assert_equal 0, "KRW".precision
end
end