testcase.py 221 B

1234567891011
  1. import _testcase
  2. def test_tuple_nested():
  3. student_records = ((12345, "Alice"), (67890, "Bob"))
  4. _testcase.test_tuple_nested(student_records)
  5. def test_class_init():
  6. t = _testcase.test()
  7. print(t.environ)