from decimal import Decimal
from django.test import SimpleTestCase

from apps.reports.services import money


class ReportFormattingContractTest(SimpleTestCase):
    def test_money_format(self):
        self.assertEqual(money(Decimal("12345.5")), "12,345.50")
