use alpha.linuxfr.org to do tests (and remove dead code for templeet)
This commit is contained in:
parent
8a59880ea9
commit
53ac1e700e
3 changed files with 37 additions and 33 deletions
|
|
@ -18,9 +18,11 @@
|
|||
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
from weboob.tools.test import BackendTest
|
||||
from datetime import datetime
|
||||
|
||||
from weboob.tools.test import BackendTest
|
||||
from weboob.backends.dlfp.browser import DLFP
|
||||
|
||||
|
||||
__all__ = ['DLFPTest']
|
||||
|
||||
|
|
@ -28,7 +30,12 @@ __all__ = ['DLFPTest']
|
|||
class DLFPTest(BackendTest):
|
||||
BACKEND = 'dlfp'
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
DLFP.DOMAIN = 'alpha.linuxfr.org'
|
||||
BackendTest.__init__(self, *args, **kwargs)
|
||||
|
||||
def test_new_messages(self):
|
||||
return
|
||||
for message in self.backend.iter_unread_messages():
|
||||
pass
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue