Use comma as a default fraction separator

This commit is contained in:
Artur Beljajev 2017-04-27 15:36:18 +03:00
parent ebc2a6af72
commit e375fcfabc
3 changed files with 11 additions and 2 deletions

View file

@ -6,6 +6,6 @@ RSpec.shared_examples 'money form field' do
it 'has money pattern' do
render
expect(field[:pattern]).to eq('^[0-9.]+$')
expect(field[:pattern]).to eq('^[0-9.,]+$')
end
end