AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
test_dates.py
根目录
/
benchmarks
/
e2e
/
tasks
/
nosol-readonly-upstream
/
workdir
/
tests
/
test_dates.py
1
import unittest
2
from dates import parse_date
3
4
5
class Dates(unittest.TestCase):
6
def test_two_digit_year_is_2000s(self):
7
self.assertEqual(parse_date("24-01-02"), (2024, 1, 2))
8
8 lines
PYTHON