spec/locales/de_spec.rb in humanize-2.1.0 vs spec/locales/de_spec.rb in humanize-2.1.1
- old
+ new
@@ -6,11 +6,11 @@
config.default_locale = :de
end
end
tests = [
- [8.15, 'Acht Punkt Eins Fünf'],
+ [8.15, 'Acht Komma Eins Fünf'],
[1002, 'Eins Tausend und Zwei'],
[2001, 'Zwei Tausend und Eins'],
[10_000, 'Zehn Tausend']
]
@@ -21,10 +21,10 @@
end
context 'decimals: number' do
it 'returns the decimals as whole numbers' do
num = 8.15
- expect(num.humanize(decimals_as: :number)).to eq('Acht Punkt Fünfzehn')
+ expect(num.humanize(decimals_as: :number)).to eq('Acht Komma Fünfzehn')
end
end
describe 'when called on conceptual number' do
it 'reads correctly' do