Make the "base" recipe more complete

This commit is contained in:
Laurent Bachelier 2013-02-07 00:23:02 +01:00 committed by Romain Bignon
commit 73d93f2d09
3 changed files with 29 additions and 1 deletions

View file

@ -0,0 +1,15 @@
<%inherit file="layout.py"/>
from weboob.tools.browser import BasePage
__all__ = ['Page1', 'Page2']
class Page1(BasePage):
def do_stuff(self, _id):
raise NotImplementedError()
class Page2(BasePage):
def do_more_stuff(self):
raise NotImplementedError()