s/BACKEND/MODULE/

This commit is contained in:
Florent 2014-09-22 17:32:03 +02:00
commit 3ecb491c1c
164 changed files with 165 additions and 165 deletions

View file

@ -409,7 +409,7 @@ Edit ``test.py`` and write, for example::
__all__ = ['ExampleTest']
class ExampleTest(BackendTest):
BACKEND = 'example'
MODULE = 'example'
def test_iter_accounts(self):
accounts = list(self.backend.iter_accounts())

View file

@ -44,7 +44,7 @@ Example::
from weboob.tools.test import BackendTest
class YoutubeTest(BackendTest):
BACKEND = 'youtube'
MODULE = 'youtube'
def test_youtube(self):
l = [v for v in self.backend.iter_search_results('lol')]

View file

@ -21,7 +21,7 @@ from weboob.tools.test import BackendTest
class SevenFiftyGramsTest(BackendTest):
BACKEND = '750g'
MODULE = '750g'
def test_recipe(self):
recipes = self.backend.iter_recipes('fondue')

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class AdeccoTest(BackendTest):
BACKEND = 'adecco'
MODULE = 'adecco'
def test_adecco_search(self):
l = list(self.backend.search_job(u'valet de chambre'))

View file

@ -23,7 +23,7 @@ from datetime import datetime
class AgendadulibreTest(BackendTest):
BACKEND = 'agendadulibre'
MODULE = 'agendadulibre'
def test_agendadulibre(self):
l = list(self.backend.list_events(datetime.now()))

View file

@ -21,7 +21,7 @@ from weboob.tools.test import BackendTest
import re
class AllocineTest(BackendTest):
BACKEND = 'allocine'
MODULE = 'allocine'
def test_search_movie(self):
movies = list(self.backend.iter_movies('spiderman'))

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class AlloRestoTest(BackendTest):
BACKEND = 'alloresto'
MODULE = 'alloresto'
def test_alloresto(self):
l = list(self.backend.iter_accounts())

View file

@ -21,7 +21,7 @@ from weboob.tools.test import BackendTest
class AllrecipesTest(BackendTest):
BACKEND = 'allrecipes'
MODULE = 'allrecipes'
def test_recipe(self):
recipes = self.backend.iter_recipes('french fries')

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class AmeliTest(BackendTest):
BACKEND = 'ameli'
MODULE = 'ameli'
def test_ameli(self):
for subscription in self.backend.iter_subscription():

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class AmeliProTest(BackendTest):
BACKEND = 'AmeliPro'
MODULE = 'AmeliPro'
def test_AmeliPro(self):
for subscription in self.backend.iter_subscription():

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class AmericanExpressTest(BackendTest):
BACKEND = 'americanexpress'
MODULE = 'americanexpress'
def test_americanexpress(self):
l = list(self.backend.iter_accounts())

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class ApecTest(BackendTest):
BACKEND = 'apec'
MODULE = 'apec'
def test_apec_search(self):
l = list(self.backend.search_job(u'informaticien'))

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class ApivieTest(BackendTest):
BACKEND = 'apivie'
MODULE = 'apivie'
def test_apivie(self):
l = list(self.backend.iter_accounts())

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class ArretSurImagesTest(BackendTest):
BACKEND = 'arretsurimages'
MODULE = 'arretsurimages'
def test_arretsurimages(self):
raise NotImplementedError()

View file

@ -23,7 +23,7 @@ from weboob.capabilities.video import BaseVideo
class ArteTest(BackendTest):
BACKEND = 'arte'
MODULE = 'arte'
def test_search(self):
l = list(self.backend.search_videos('a'))

View file

@ -24,7 +24,7 @@ from random import choice
class AttilasubTest(BackendTest):
BACKEND = 'attilasub'
MODULE = 'attilasub'
def test_subtitle(self):
subtitles = list(self.backend.iter_subtitles('fr', 'spiderman'))

View file

@ -23,7 +23,7 @@ from weboob.capabilities.radio import Radio
class AudioAddictTest(BackendTest):
BACKEND = 'audioaddict'
MODULE = 'audioaddict'
def test_audioaddict(self):
ls = list(self.backend.iter_resources((Radio, ), []))

View file

@ -23,7 +23,7 @@ from weboob.tools.browser import BrowserUnavailable
class AuMTest(BackendTest):
BACKEND = 'aum'
MODULE = 'aum'
def test_new_messages(self):
try:

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class AXABanqueTest(BackendTest):
BACKEND = 'axabanque'
MODULE = 'axabanque'
def test_axabanque(self):
l = list(self.backend.iter_accounts())

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class BanqueAccordTest(BackendTest):
BACKEND = 'banqueaccord'
MODULE = 'banqueaccord'
def test_banqueaccord(self):
raise NotImplementedError()

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class BanquePopulaireTest(BackendTest):
BACKEND = 'banquepopulaire'
MODULE = 'banquepopulaire'
def test_banquepop(self):
l = list(self.backend.iter_accounts())

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class BarclaysTest(BackendTest):
BACKEND = 'barclays'
MODULE = 'barclays'
def test_banquepop(self):
l = list(self.backend.iter_accounts())

View file

@ -21,7 +21,7 @@ from weboob.tools.capabilities.gallery.genericcomicreadertest import GenericComi
class BatotoTest(GenericComicReaderTest):
BACKEND = 'batoto'
MODULE = 'batoto'
def test_download(self):
return self._test_download('26287/yurumates_ch4_by_primitive-scans')

View file

@ -23,7 +23,7 @@ from weboob.tools.test import BackendTest, SkipTest
class BiplanTest(BackendTest):
BACKEND = 'biplan'
MODULE = 'biplan'
def test_biplan_list(self):
if datetime.now() > datetime(datetime.now().year, 7, 14) and datetime.now() < datetime(datetime.now().year, 9, 15):

View file

@ -23,7 +23,7 @@ from random import choice
class BNPorcTest(BackendTest):
BACKEND = 'bnporc'
MODULE = 'bnporc'
def test_bank(self):
l = list(self.backend.iter_accounts())

View file

@ -23,7 +23,7 @@ from weboob.tools.test import BackendTest
class BoursoramaTest(BackendTest):
BACKEND = 'boursorama'
MODULE = 'boursorama'
def test_boursorama(self):
l = list(self.backend.iter_accounts())

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class BouyguesTest(BackendTest):
BACKEND = 'bouygues'
MODULE = 'bouygues'
def test_bouygues(self):
pass

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class BredTest(BackendTest):
BACKEND = 'bred'
MODULE = 'bred'
def test_bred(self):
l = list(self.backend.iter_accounts())

View file

@ -7,7 +7,7 @@ from random import choice
class BTDiggTest(BackendTest):
BACKEND = 'btdigg'
MODULE = 'btdigg'
def test_iter_torrents(self):
# try something popular so we sometimes get a magnet-only torrent

View file

@ -24,7 +24,7 @@ from random import choice
class BtmonTest(BackendTest):
BACKEND = 'btmon'
MODULE = 'btmon'
def test_torrent(self):
torrents = list(self.backend.iter_torrents('spiderman'))

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class CaisseEpargneTest(BackendTest):
BACKEND = 'caissedepargne'
MODULE = 'caissedepargne'
def test_caisse_epargne(self):
l = list(self.backend.iter_accounts())

View file

@ -23,7 +23,7 @@ from weboob.capabilities.video import BaseVideo
class CanalPlusTest(BackendTest):
BACKEND = 'canalplus'
MODULE = 'canalplus'
def test_canalplus(self):
l = list(self.backend.search_videos(u'guignol'))

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class CanalTPTest(BackendTest):
BACKEND = 'canaltp'
MODULE = 'canaltp'
def test_canaltp(self):
stations = list(self.backend.iter_station_search('defense'))

View file

@ -14,7 +14,7 @@ from weboob.capabilities.video import BaseVideo
class CappedTest(BackendTest):
BACKEND = 'cappedtv'
MODULE = 'cappedtv'
def test_search(self):
l = list(self.backend.search_videos('kewlers'))

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class CarrefourBanqueTest(BackendTest):
BACKEND = 'carrefourbanque'
MODULE = 'carrefourbanque'
def test_carrefourbanque(self):
l = list(self.backend.iter_accounts())

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class CciTest(BackendTest):
BACKEND = 'cci'
MODULE = 'cci'
def test_cci_search(self):
l = list(self.backend.search_job())

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class ChampslibresTest(BackendTest):
BACKEND = 'champslibres'
MODULE = 'champslibres'
def test_champslibres(self):
pass

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class ChronopostTest(BackendTest):
BACKEND = 'chronopost'
MODULE = 'chronopost'
def test_chronopost(self):
raise NotImplementedError()

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class CICTest(BackendTest):
BACKEND = 'cic'
MODULE = 'cic'
def test_cic(self):
l = list(self.backend.iter_accounts())

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class CitelisTest(BackendTest):
BACKEND = 'citelis'
MODULE = 'citelis'
def test_citelis(self):
l = list(self.backend.iter_accounts())

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class CmsoTest(BackendTest):
BACKEND = 'cmso'
MODULE = 'cmso'
def test_cmso(self):
l = list(self.backend.iter_accounts())

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class CrAgrTest(BackendTest):
BACKEND = 'cragr'
MODULE = 'cragr'
def test_cragr(self):
l = list(self.backend.iter_accounts())

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class CreditCooperatifTest(BackendTest):
BACKEND = 'creditcooperatif'
MODULE = 'creditcooperatif'
def test_creditcoop(self):
l = list(self.backend.iter_accounts())

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class CreditDuNordTest(BackendTest):
BACKEND = 'creditdunord'
MODULE = 'creditdunord'
def test_creditdunord(self):
l = list(self.backend.iter_accounts())

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class CreditMutuelTest(BackendTest):
BACKEND = 'creditmutuel'
MODULE = 'creditmutuel'
def test_crmut(self):
l = list(self.backend.iter_accounts())

View file

@ -21,7 +21,7 @@ from weboob.tools.test import BackendTest
class CuisineazTest(BackendTest):
BACKEND = 'cuisineaz'
MODULE = 'cuisineaz'
def test_recipe(self):
recipes = self.backend.iter_recipes('fondue')

View file

@ -25,7 +25,7 @@ from random import choice
class DailymotionTest(BackendTest):
BACKEND = 'dailymotion'
MODULE = 'dailymotion'
# Not easy to find a kids video which will always be there
# This might break in the future

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class DelubacTest(BackendTest):
BACKEND = 'delubac'
MODULE = 'delubac'
def test_delubac(self):
l = list(self.backend.iter_accounts())

View file

@ -25,7 +25,7 @@ from .browser import DLFP
class DLFPTest(BackendTest):
BACKEND = 'dlfp'
MODULE = 'dlfp'
def __init__(self, *args, **kwargs):
DLFP.DOMAIN = 'alpha.linuxfr.org'

View file

@ -21,7 +21,7 @@ from weboob.tools.test import BackendTest
class DresdenWetterTest(BackendTest):
BACKEND = 'dresdenwetter'
MODULE = 'dresdenwetter'
def test_gauges_sensors(self):
"""

View file

@ -21,7 +21,7 @@ from weboob.tools.capabilities.gallery.genericcomicreadertest import GenericComi
class EatmangaTest(GenericComicReaderTest):
BACKEND = 'eatmanga'
MODULE = 'eatmanga'
def test_download(self):
return self._test_download('Glass-Mask/Glass-Mask-Vol-031')

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class EbonicsTest(BackendTest):
BACKEND = 'ebonics'
MODULE = 'ebonics'
def test_translate(self):
self.backend.translate('English', 'Nigger!', 'I like penis.')

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class EdfTest(BackendTest):
BACKEND = 'edf'
MODULE = 'edf'
def test_edf(self):
for subscription in self.backend.iter_subscription():

View file

@ -23,7 +23,7 @@ from weboob.capabilities.gallery import BaseGallery
class EHentaiTest(BackendTest):
BACKEND = 'ehentai'
MODULE = 'ehentai'
def test_search(self):
l = list(self.backend.search_gallery('lol'))

View file

@ -24,7 +24,7 @@ from weboob.tools.test import BackendTest
class EuroparlTest(BackendTest):
BACKEND = 'europarl'
MODULE = 'europarl'
# def test_search(self):
# l = list(self.backend.search_videos('neelie kroes'))

View file

@ -21,7 +21,7 @@ from weboob.tools.test import BackendTest, SkipTest
class FeedlyTest(BackendTest):
BACKEND = 'feedly'
MODULE = 'feedly'
def test_login(self):
if self.backend.browser.username:

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class FortuneoTest(BackendTest):
BACKEND = 'fortuneo'
MODULE = 'fortuneo'
def test_fortuneo(self):
l = list(self.backend.iter_accounts())

View file

@ -23,7 +23,7 @@ from weboob.tools.test import BackendTest
class FourChanTest(BackendTest):
BACKEND = 'fourchan'
MODULE = 'fourchan'
def test_new_messages(self):
tot = 0

View file

@ -23,7 +23,7 @@ from weboob.capabilities.video import BaseVideo
class PluzzTest(BackendTest):
BACKEND = 'francetelevisions'
MODULE = 'francetelevisions'
def test_search(self):
# If the test fails, it might be good news!

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class FreeMobileTest(BackendTest):
BACKEND = 'freemobile'
MODULE = 'freemobile'
def test_details(self):
for subscription in self.backend.iter_subscription():

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class GanAssurancesTest(BackendTest):
BACKEND = 'ganassurances'
MODULE = 'ganassurances'
def test_banquepop(self):
l = list(self.backend.iter_accounts())

View file

@ -21,7 +21,7 @@ from weboob.tools.test import BackendTest
class GazelleTest(BackendTest):
BACKEND = 'gazelle'
MODULE = 'gazelle'
def test_torrent(self):
l = list(self.backend.iter_torrents('sex'))

View file

@ -24,7 +24,7 @@ from weboob.tools.test import BackendTest
class GDCVaultTest(BackendTest):
BACKEND = 'gdcvault'
MODULE = 'gdcvault'
# def test_search(self):
# l = list(self.backend.search_videos('linux'))

View file

@ -23,7 +23,7 @@ from weboob.tools.test import BackendTest
class GdfSuezTest(BackendTest):
BACKEND = 'gdfsuez'
MODULE = 'gdfsuez'
def test_gdfsuez(self):
for subscription in self.backend.iter_subscription():

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class GeolocIPTest(BackendTest):
BACKEND = 'geolocip'
MODULE = 'geolocip'
def test_geolocip(self):
self.backend.get_location('88.198.11.130')

View file

@ -23,7 +23,7 @@ from weboob.capabilities.bugtracker import Query
class GithubTest(BackendTest):
BACKEND = 'github'
MODULE = 'github'
def test_project(self):
project = self.backend.get_project('github/hubot')

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class GoogleTranslateTest(BackendTest):
BACKEND = 'googletranslate'
MODULE = 'googletranslate'
def test_translate(self):
tr = self.backend.translate('French', 'English', 'je mange du chocolat')

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest, SkipTest
class GroovesharkTest(BackendTest):
BACKEND = 'grooveshark'
MODULE = 'grooveshark'
def test_grooveshark_audio_search(self):
result = list(self.backend.search_audio("Gronibard"))

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class GroupamaesTest(BackendTest):
BACKEND = 'groupamaes'
MODULE = 'groupamaes'
def test_groupamaes(self):
l = list(self.backend.iter_accounts())

View file

@ -23,7 +23,7 @@ from uuid import uuid4
class GuerrillamailTest(BackendTest):
BACKEND = 'guerrillamail'
MODULE = 'guerrillamail'
def test_guerrillamail(self):
box = uuid4()

View file

@ -23,7 +23,7 @@ from weboob.tools.misc import limit
class HDSTest(BackendTest):
BACKEND = 'hds'
MODULE = 'hds'
def test_new_messages(self):
for message in limit(self.backend.iter_unread_messages(), 10):

View file

@ -23,7 +23,7 @@ from random import choice
class HelloBankTest(BackendTest):
BACKEND = 'hellobank'
MODULE = 'hellobank'
def test_bank(self):
l = list(self.backend.iter_accounts())

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class HSBCTest(BackendTest):
BACKEND = 'hsbc'
MODULE = 'hsbc'
def test_hsbc(self):
l = list(self.backend.iter_accounts())

View file

@ -23,7 +23,7 @@ from weboob.tools.test import BackendTest, SkipTest
class HybrideTest(BackendTest):
BACKEND = 'hybride'
MODULE = 'hybride'
def test_hybride_list(self):
if datetime.now() > datetime(datetime.now().year, 6, 30) and datetime.now() < datetime(datetime.now().year, 9, 15):

View file

@ -21,7 +21,7 @@ from weboob.tools.test import BackendTest
class ImdbTest(BackendTest):
BACKEND = 'imdb'
MODULE = 'imdb'
def test_search_movie(self):
movies = list(self.backend.iter_movies('spiderman'))

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class ImgurTest(BackendTest):
BACKEND = 'imgur'
MODULE = 'imgur'
# small gif file
DATA = 'R0lGODlhAQABAIAAAP///wAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==\n'

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class INATest(BackendTest):
BACKEND = 'ina'
MODULE = 'ina'
def test_ina(self):
l = list(self.backend.search_videos('chirac'))

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class IndeedTest(BackendTest):
BACKEND = 'indeed'
MODULE = 'indeed'
def test_indeed_search(self):
l = list(self.backend.search_job('informaticien'))

View file

@ -25,7 +25,7 @@ import random
class INGTest(BackendTest):
BACKEND = 'ing'
MODULE = 'ing'
def test_accounts(self):
l = list(self.backend.iter_accounts())

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class InrocksTest(BackendTest):
BACKEND = 'inrocks'
MODULE = 'inrocks'
def test_new_messages(self):
for message in self.backend.iter_unread_messages():

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class IpinfodbTest(BackendTest):
BACKEND = 'ipinfodb'
MODULE = 'ipinfodb'
def test_ipinfobd(self):
self.backend.get_location('88.198.11.130')

View file

@ -23,7 +23,7 @@ from weboob.capabilities.video import BaseVideo
class JacquieEtMichelTest(BackendTest):
BACKEND = 'jacquieetmichel'
MODULE = 'jacquieetmichel'
def test_search(self):
self.assertTrue(len(list(self.backend.search_videos('anus', nsfw=False))) == 0)

View file

@ -21,7 +21,7 @@ from weboob.tools.test import BackendTest
class VelibTest(BackendTest):
BACKEND = 'jcvelaux'
MODULE = 'jcvelaux'
def test_velib(self):
l = list(self.backend.iter_gauges())

View file

@ -24,7 +24,7 @@ from weboob.tools.test import BackendTest
class JVMalinTest(BackendTest):
BACKEND = 'jvmalin'
MODULE = 'jvmalin'
def test_roadmap_cities(self):
filters = RoadmapFilters()

View file

@ -25,7 +25,7 @@ from random import choice
class KickassTest(BackendTest):
BACKEND = 'kickass'
MODULE = 'kickass'
def test_torrent(self):
torrents = list(self.backend.iter_torrents('debian'))

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class LaCentraleTest(BackendTest):
BACKEND = 'lacentrale'
MODULE = 'lacentrale'
def test_lacentrale(self):
products = list(self.backend.search_products('1000€,pro'))

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class LCLtTest(BackendTest):
BACKEND = 'lcl'
MODULE = 'lcl'
def test_lcl(self):
list(self.backend.iter_accounts())

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class LeclercMobileTest(BackendTest):
BACKEND = 'leclercmobile'
MODULE = 'leclercmobile'
def test_list(self):
"""

View file

@ -23,7 +23,7 @@ from weboob.tools.html import html2text
class LeFigaroTest(BackendTest):
BACKEND = 'lefigaro'
MODULE = 'lefigaro'
def test_lefigaro(self):
l = list(self.backend.iter_threads())

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class LiberationTest(BackendTest):
BACKEND = 'liberation'
MODULE = 'liberation'
def test_new_messages(self):
for message in self.backend.iter_unread_messages():

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class LolixTest(BackendTest):
BACKEND = 'lolix'
MODULE = 'lolix'
def test_lolix_advanced_search(self):
l = list(self.backend.advanced_search_job())

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class LutimTest(BackendTest):
BACKEND = 'lutim'
MODULE = 'lutim'
# small gif file
DATA = 'R0lGODlhAQABAIAAAP///wAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==\n'

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class MailinatorTest(BackendTest):
BACKEND = 'mailinator'
MODULE = 'mailinator'
def test_mailinator(self):
t = self.backend.get_thread('qwerty')

View file

@ -22,7 +22,7 @@ from weboob.tools.capabilities.gallery.genericcomicreadertest import GenericComi
class MangafoxTest(GenericComicReaderTest):
BACKEND = 'mangafox'
MODULE = 'mangafox'
def test_download(self):
return self._test_download('glass_no_kamen/v02/c000')

View file

@ -21,7 +21,7 @@ from weboob.tools.capabilities.gallery.genericcomicreadertest import GenericComi
class MangagoTest(GenericComicReaderTest):
BACKEND = 'mangago'
MODULE = 'mangago'
def test_download(self):
return self._test_download('manga/love_scar/mh/manga/love_scar/c001/')

View file

@ -21,7 +21,7 @@ from weboob.tools.capabilities.gallery.genericcomicreadertest import GenericComi
class MangahereTest(GenericComicReaderTest):
BACKEND = 'mangahere'
MODULE = 'mangahere'
def test_download(self):
return self._test_download('glass_no_kamen/v02/c000')

View file

@ -21,7 +21,7 @@ from weboob.tools.capabilities.gallery.genericcomicreadertest import GenericComi
class MangareaderTest(GenericComicReaderTest):
BACKEND = 'mangareader'
MODULE = 'mangareader'
def test_download(self):
return self._test_download('glass-mask/3')

View file

@ -22,7 +22,7 @@ from weboob.tools.test import BackendTest
class MareeinfoTest(BackendTest):
BACKEND = 'mareeinfo'
MODULE = 'mareeinfo'
def test_mareeinfo(self):
l = list(self.backend.iter_gauges())

View file

@ -21,7 +21,7 @@ from weboob.tools.test import BackendTest
class MarmitonTest(BackendTest):
BACKEND = 'marmiton'
MODULE = 'marmiton'
def test_recipe(self):
recipes = self.backend.iter_recipes('fondue')

View file

@ -23,7 +23,7 @@ from datetime import datetime
class MediawikiTest(BackendTest):
BACKEND = 'mediawiki'
MODULE = 'mediawiki'
def test_get_content(self):
self.backend.get_content(u"Utilisateur:Clemux/Test")

Some files were not shown because too many files have changed in this diff Show more