diff options
| author | Brian Rosner <brosner@gmail.com> | 2009-02-11 20:13:17 +0000 |
|---|---|---|
| committer | Brian Rosner <brosner@gmail.com> | 2009-02-11 20:13:17 +0000 |
| commit | e5cd43e5884ec5860cb7f421b6f84eda93e70b3b (patch) | |
| tree | b78d68f06eb2a7af24f2a230dc9c7c25b9531416 /tests/regressiontests/model_fields | |
| parent | e9af96de1edac106ad30994865a0ee2233bed984 (diff) | |
Fixed #5903 -- DecimalField.get_default() now correctly returns a Decimal object when the model instance was not retrieved from the database. Thanks Justin Driscoll and pigletto.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9823 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/model_fields')
| -rw-r--r-- | tests/regressiontests/model_fields/tests.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/regressiontests/model_fields/tests.py b/tests/regressiontests/model_fields/tests.py index 80ff4bada6..b1a572844f 100644 --- a/tests/regressiontests/model_fields/tests.py +++ b/tests/regressiontests/model_fields/tests.py @@ -20,6 +20,10 @@ Traceback (most recent call last): ... ValidationError: This value must be a decimal number. +>>> f = DecimalField(default=Decimal("0.00")) +>>> f.get_default() +Decimal("0.00") + >>> f = DecimalField(max_digits=5, decimal_places=1) >>> x = f.to_python(2) >>> y = f.to_python('2.6') |
