Changeset View
Changeset View
Standalone View
Standalone View
looper/tests/test_moneyfield.py
| Show First 20 Lines • Show All 59 Lines • ▼ Show 20 Lines | def test_changed_data(self): | ||||
| { | { | ||||
| 'user': [self.user.id + 1], | 'user': [self.user.id + 1], | ||||
| 'status': [order.status], | 'status': [order.status], | ||||
| 'name': [order.name], | 'name': [order.name], | ||||
| 'payment_method': [order.payment_method_id], | 'payment_method': [order.payment_method_id], | ||||
| 'collection_method': [order.collection_method], | 'collection_method': [order.collection_method], | ||||
| 'currency': [order.currency], | 'currency': [order.currency], | ||||
| 'price': [order.price.decimals_string], | 'price': [order.price.decimals_string], | ||||
| 'refunded': [order.refunded.decimals_string], | |||||
| 'tax': [order.tax.decimals_string], | 'tax': [order.tax.decimals_string], | ||||
| 'tax_refunded': [order.tax_refunded.decimals_string], | |||||
| 'tax_type': [''], | 'tax_type': [''], | ||||
| 'tax_rate': [order.tax_rate], | 'tax_rate': [order.tax_rate], | ||||
| 'tax_country': [''], | 'tax_country': [''], | ||||
| 'paid_at_0': [''], | 'paid_at_0': [''], | ||||
| 'paid_at_1': [''], | 'paid_at_1': [''], | ||||
| 'retry_after_0': [''], | 'retry_after_0': [''], | ||||
| 'retry_after_1': [''], | 'retry_after_1': [''], | ||||
| 'email': [order.email], | 'email': [order.email], | ||||
| Show All 16 Lines | |||||