19 lines
641 B
Python
19 lines
641 B
Python
import frappe
|
|
from frappe import format
|
|
from frappe.tests import IntegrationTestCase
|
|
|
|
|
|
class TestFormatter(IntegrationTestCase):
|
|
def test_currency_formatting(self):
|
|
df = frappe._dict({"fieldname": "amount", "fieldtype": "Currency", "options": "currency"})
|
|
|
|
doc = frappe._dict({"amount": 5})
|
|
frappe.db.set_default("currency", "INR")
|
|
|
|
# if currency field is not passed then default currency should be used.
|
|
self.assertEqual(format(100000, df, doc, format="#,###.##"), "₹ 100,000.00")
|
|
|
|
doc.currency = "USD"
|
|
self.assertEqual(format(100000, df, doc, format="#,###.##"), "$ 100,000.00")
|
|
|
|
frappe.db.set_default("currency", None)
|