diff --git a/src/scrape_up/librarygenesis/__init__.py b/src/scrape_up/librarygenesis/__init__.py index 873ca8de..55355739 100644 --- a/src/scrape_up/librarygenesis/__init__.py +++ b/src/scrape_up/librarygenesis/__init__.py @@ -1,3 +1,3 @@ from .library import LibGen -__all__ = ["LibGen"] \ No newline at end of file +__all__ = ["LibGen"] diff --git a/src/test/banners_test.py b/src/test/banners_test.py index 288b86d4..e21d4508 100644 --- a/src/test/banners_test.py +++ b/src/test/banners_test.py @@ -3,7 +3,6 @@ class TestScraper88x31(unittest.TestCase): - def setUp(self): """ Initialize a Scraper88x31 instance before each test method. @@ -12,9 +11,9 @@ def setUp(self): def test_get_all(self): """ - | Methods | Details | - | ------------------ | -------------------------------------------------------- | - | `get_all()` | Returns the list of all available 88x31 banners | + | Methods | Details | + | ------------------ | -------------------------------------------------------- | + | `get_all()` | Returns the list of all available 88x31 banners | """ try: banners = self.scraper.get_all() diff --git a/src/test/librarygenesis_test.py b/src/test/librarygenesis_test.py index 37fbcefe..00456f73 100644 --- a/src/test/librarygenesis_test.py +++ b/src/test/librarygenesis_test.py @@ -1,13 +1,14 @@ import unittest -from src.scrape_up.librarygenesis import LibGen +from scrape_up.librarygenesis import LibGen class TestLibGen(unittest.TestCase): """ - | Methods | Details | - | --------------| ----------------------------- | - | `.getBooks(book_name=" ")` | Returns the books with name, author, size, format, book link, book cover link, language | - """ + | Methods | Details | + | --------------| ----------------------------- | + | `.getBooks(book_name=" ")` | Returns the books with name, author, size, format, book link, book cover link, language | + """ + def setUp(self): """ Initialize a LibGen instance before each test method. @@ -20,7 +21,11 @@ def test_getBooks_empty_name(self): """ try: result = self.libgen.getBooks("") - self.assertEqual(result, "Error: enter name", "Expected error message for empty book name") + self.assertEqual( + result, + "Error: enter name", + "Expected error message for empty book name", + ) except: return None @@ -30,7 +35,11 @@ def test_getBooks_short_name(self): """ try: result = self.libgen.getBooks("AI") - self.assertEqual(result, "Error: Title Too Short", "Expected error message for short book name") + self.assertEqual( + result, + "Error: Title Too Short", + "Expected error message for short book name", + ) except: return None @@ -58,7 +67,11 @@ def test_getBooks_no_results(self): """ try: result = self.libgen.getBooks("somebookthatdoesnotexist") - self.assertEqual(result, "Error: no results found", "Expected error message for no results found") + self.assertEqual( + result, + "Error: no results found", + "Expected error message for no results found", + ) except: return None