fixes on fortuneo module

backend.py
    iter_history() implemented
  browser.py
    '.*/prive/default\.jsp.*' page added to AccountsList to prevent warnings
    full url on self.location() using 'https://' + self.DOMAIN_LOGIN + 'stuff'
  pages/accounts_list.py
    added unicode() to prevent warnings
  test.py
    test really implemented after site maintenance
This commit is contained in:
sputnick 2012-04-22 18:48:25 +02:00
commit 507c9d2c80
4 changed files with 13 additions and 13 deletions

View file

@ -27,5 +27,6 @@ class FortuneoTest(BackendTest):
l = list(self.backend.iter_accounts())
self.assertTrue(len(l) > 0)
a = l[0]
list(self.backend.iter_coming(a))
list(self.backend.iter_history(a))
# vim:ts=4:sw=4