You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
futool/tests/test_fu_date.py

85 lines
1.5 KiB

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2023/4/2 9:01
# @Author : old tom
# @File : test_fu_date.py
# @Project : futool
from unittest import TestCase
from futool.core import fu_date
# @Desc :
class Test(TestCase):
def test_current_year(self):
rt = fu_date.current_year()
self.assertTrue(rt)
def test_current_month(self):
self.fail()
def test_current_day(self):
self.fail()
def test_current_date(self):
self.fail()
def test_current_datetime(self):
self.fail()
def test_current_time(self):
self.fail()
def test_current_timestamp(self):
self.fail()
def test_format_datetime_str(self):
self.fail()
def test_format_date_str(self):
self.fail()
def test_datetime_2_second(self):
self.fail()
def test_sec_2_datatime(self):
self.fail()
def test_is_leap(self):
self.fail()
def test_begin_of_week(self):
self.fail()
def test_end_of_week(self):
self.fail()
def test_end_of_month(self):
self.fail()
def test_weekday(self):
self.fail()
def test_age(self):
self.fail()
def test_age_of_now(self):
self.fail()
def test_between(self):
self.fail()
def test_time_offset(self):
self.fail()
def test_is_am(self):
self.fail()
def test_is_pm(self):
self.fail()
def test_next_week(self):
self.fail()
def test_next_month(self):
self.fail()