mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-07-27 17:18:29 -06:00
11 lines
233 B
Python
11 lines
233 B
Python
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()
|