Remove unused currency config vars: decimal_mark, thousands_separator

This commit is contained in:
Rohan Mitchell
2016-06-08 14:56:30 +10:00
parent a6a0bdb063
commit 0e354f8fc1
2 changed files with 3 additions and 16 deletions

View File

@@ -7,9 +7,6 @@ describe 'convert number to localised currency ', ->
symbol_position: "before"
currency: "D"
hide_cents: "false"
# Not used yet...
# decimal_mark: "."
# thousands_separator: ","
module 'Darkswarm'
module ($provide)->
$provide.value "currencyConfig", currencyconfig
@@ -38,5 +35,3 @@ describe 'convert number to localised currency ', ->
it "can hide cents", ->
currencyconfig.hide_cents = "true"
expect(filter(5)).toEqual "$5"