diff options
Diffstat (limited to 'tests/db_functions/math/test_exp.py')
| -rw-r--r-- | tests/db_functions/math/test_exp.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/db_functions/math/test_exp.py b/tests/db_functions/math/test_exp.py index 0981d4fce3..fac2f6c08d 100644 --- a/tests/db_functions/math/test_exp.py +++ b/tests/db_functions/math/test_exp.py @@ -11,6 +11,11 @@ from ..models import DecimalModel, FloatModel, IntegerModel class ExpTests(TestCase): + def test_null(self): + IntegerModel.objects.create() + obj = IntegerModel.objects.annotate(null_exp=Exp('normal')).first() + self.assertIsNone(obj.null_exp) + def test_decimal(self): DecimalModel.objects.create(n1=Decimal('-12.9'), n2=Decimal('0.6')) obj = DecimalModel.objects.annotate(n1_exp=Exp('n1'), n2_exp=Exp('n2')).first() |
