MinDalle_StableDiff/Python310/Lib/test/test_longexp.py

11 lines
233 B
Python
Raw Permalink Normal View History

2022-09-17 15:26:13 +03:00
import unittest
class LongExpText(unittest.TestCase):
def test_longexp(self):
REPS = 65580
l = eval("[" + "2," * REPS + "]")
self.assertEqual(len(l), REPS)
if __name__ == "__main__":
unittest.main()