Hacked By AnonymousFox

Current Path : /opt/cloudlinux/venv/lib64/python3.11/site-packages/testfixtures/tests/
Upload File :
Current File : //opt/cloudlinux/venv/lib64/python3.11/site-packages/testfixtures/tests/test_generator.py

from unittest import TestCase

from types import GeneratorType

from testfixtures import generator


class TestG(TestCase):

    def test_example(self):
        g = generator(1, 2, 3)
        self.assertTrue(isinstance(g, GeneratorType))
        self.assertEqual(tuple(g), (1, 2, 3))

    def test_from_sequence(self):
        s = (1, 2, 3)
        g = generator(*s)
        self.assertTrue(isinstance(g, GeneratorType))
        self.assertEqual(tuple(g), (1, 2, 3))

Hacked By AnonymousFox1.0, Coded By AnonymousFox