fix docstrings and add weboob.browser.* in nosetests

This commit is contained in:
Romain Bignon 2014-10-07 09:31:10 +02:00
commit 8508f951f5
3 changed files with 6 additions and 2 deletions

View file

@ -649,7 +649,8 @@ class PagesBrowser(DomainBrowser):
... list = URL('/~rom1/projects/weboob/list-(?P<pagenum>\d+).html', Page)
...
>>> b = Browser()
>>> b.list.go(pagenum=1)
>>> b.list.go(pagenum=1) # doctest: +ELLIPSIS
<weboob.browser.browsers.Page object at 0x...>
>>> list(b.pagination(lambda: b.page.iter_values()))
['One', 'Two', 'Three', 'Four']
"""