27d28b8eef
The default encoding for source files is UTF-8 since Python 3, so we can drop all encoding headers. While we are at it, just replace them with SPDX headers.
26 lines
839 B
Python
26 lines
839 B
Python
# SPDX-License-Identifier: MIT
|
|
# Copyright (C) 2013-2014 Bastian Kleineidam
|
|
# Copyright (C) 2015-2016 Tobias Gruetzmacher
|
|
import pytest
|
|
from dosagelib import scraper
|
|
|
|
|
|
class TestScraper(object):
|
|
"""Test scraper module functions."""
|
|
|
|
def test_get_scrapers(self):
|
|
for scraperobj in scraper.get_scrapers():
|
|
scraperobj.indexes = ["bla"]
|
|
assert scraperobj.url, "missing url in %s" % scraperobj.name
|
|
|
|
def test_find_scrapers_single(self):
|
|
result = scraper.find_scrapers("xkcd")
|
|
assert len(result) == 1
|
|
|
|
def test_find_scrapers_multi(self):
|
|
result = scraper.find_scrapers("a", multiple_allowed=True)
|
|
assert len(result) > 1
|
|
|
|
def test_find_scrapers_error(self):
|
|
with pytest.raises(ValueError, match='empty comic name'):
|
|
scraper.find_scrapers('')
|