MoviePilot/tests/test_doubansync.py
2023-06-08 18:47:04 +08:00

18 lines
310 B
Python

# -*- coding: utf-8 -*-
from unittest import TestCase
from app.chain.douban_sync import DoubanSyncChain
class DoubanSyncTest(TestCase):
def setUp(self) -> None:
pass
def tearDown(self) -> None:
pass
@staticmethod
def test_doubansync():
DoubanSyncChain().process()