fix bugs
This commit is contained in:
17
tests/test_cookiecloud.py
Normal file
17
tests/test_cookiecloud.py
Normal file
@ -0,0 +1,17 @@
|
||||
# -*- 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.assertEqual(result[0], True)
|
Reference in New Issue
Block a user