Beispiel #1
0
    def test_create_money_instance(self):
        """
        It creates a new money instance with given amount using the same currency
        """
        original = Money(10, self.currency)
        new = original.instance(100)

        self.assertEqual(self.currency, new.currency)