mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-02-13 15:37:33 +08:00
18 lines
294 B
Python
18 lines
294 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from unittest import TestCase
|
|
|
|
from app.chain.douban import DoubanChain
|
|
|
|
|
|
class DoubanSyncTest(TestCase):
|
|
def setUp(self) -> None:
|
|
pass
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
@staticmethod
|
|
def test_doubansync():
|
|
DoubanChain().sync()
|