mirror of
https://github.com/django/django.git
synced 2025-07-23 21:25:40 +00:00

git-svn-id: http://code.djangoproject.com/svn/django/trunk@13935 bcc190cf-cafb-0310-a4f2-bffc1f526a37
10 lines
260 B
Python
10 lines
260 B
Python
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)
|