mirror of
https://github.com/django/django.git
synced 2025-11-20 03:30:00 +00:00
Refs #28643 -- Added math database functions.
Thanks Nick Pope for much review.
This commit is contained in:
parent
48aeca44d8
commit
a0b19a0f5b
30 changed files with 1644 additions and 8 deletions
15
tests/db_functions/math/test_pi.py
Normal file
15
tests/db_functions/math/test_pi.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import math
|
||||
|
||||
from django.db.models.functions import Pi
|
||||
from django.test import TestCase
|
||||
|
||||
from ..models import FloatModel
|
||||
|
||||
|
||||
class PiTests(TestCase):
|
||||
|
||||
def test(self):
|
||||
FloatModel.objects.create(f1=2.5, f2=15.9)
|
||||
obj = FloatModel.objects.annotate(pi=Pi()).first()
|
||||
self.assertIsInstance(obj.pi, float)
|
||||
self.assertAlmostEqual(obj.pi, math.pi, places=5)
|
||||
Loading…
Add table
Add a link
Reference in a new issue