(self)
| 2092 | is_(account.balance > Amount(500, "cad"), True) |
| 2093 | |
| 2094 | def test_instance_four(self): |
| 2095 | BankAccount, Amount = self.BankAccount, self.Amount |
| 2096 | account = BankAccount(balance=Amount(4000, "usd")) |
| 2097 | eq_( |
| 2098 | account.balance + Amount(500, "cad") - Amount(50, "eur"), |
| 2099 | Amount(Decimal("4425.316"), "usd"), |
| 2100 | ) |
| 2101 | |
| 2102 | def test_query_one(self): |
| 2103 | BankAccount, Amount = self.BankAccount, self.Amount |
nothing calls this directly
no test coverage detected