1
0
mirror of https://github.com/django/django.git synced 2025-01-15 12:52:31 +00:00

10 lines
277 B
Python

from django.utils import unittest
from django.utils.functional import lazy
class FunctionalTestCase(unittest.TestCase):
def test_lazy(self):
t = lazy(lambda: tuple(range(3)), list, tuple)
for a, b in zip(t(), range(3)):
self.assertEqual(a, b)