mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-02-03 02:25:32 +08:00
18 lines
344 B
Python
18 lines
344 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from unittest import TestCase
|
|
|
|
from app.chain.cookiecloud import CookieCloudChain
|
|
|
|
|
|
class CookieCloudTest(TestCase):
|
|
def setUp(self) -> None:
|
|
pass
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
def test_cookiecloud(self):
|
|
result = CookieCloudChain().process()
|
|
self.assertTrue(result[0])
|