返回 DeepSeek-Reasonix
test_schema.py
1 import unittest
2 from schema import COLUMNS
3
4
5 class Schema(unittest.TestCase):
6 def test_has_archived(self):
7 self.assertIn("archived", COLUMNS)
8
8 lines PYTHON