Skip to content

Commit

Permalink
Update numbers test to match implemented numbering system
Browse files Browse the repository at this point in the history
  • Loading branch information
davispuh committed Jan 22, 2014
1 parent 61e80b9 commit c338031
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/export/data/numbers_test.rb
Expand Up @@ -23,6 +23,7 @@ class TestCldrDataNumbers < Test::Unit::TestCase
test "number formats :de" do
expected = {
:decimal => {
:number_system => "latn",
:patterns => {
:default => "#,##0.###",
"long" => {
Expand Down Expand Up @@ -56,16 +57,19 @@ class TestCldrDataNumbers < Test::Unit::TestCase
}
},
:scientific => {
:number_system => "latn",
:patterns => {
:default => "#E0"
}
},
:percent => {
:number_system => "latn",
:patterns => {
:default => "#,##0 %" # includes a non-breaking space (\302\240)
}
},
:currency => {
:number_system => "latn",
:patterns => {
:default => "#,##0.00 ¤", # includes a non-breaking space (\302\240)
},
Expand Down

0 comments on commit c338031

Please sign in to comment.