Metadata-Version: 1.1
Name: jalon.pas.bdd
Version: 2.2.2r184
Summary: UNKNOWN
Home-page: http://unice.fr
Author: Bordonado Christophe - Université Nice Sophia Antipolis (UNS Service PI)
Author-email: tice@unice.fr
License: CECILL
Description: .. contents::
        
        .. Note!
           -----
           Update the following URLs to point to your:
        
           - code repository
           - bug tracker
           - questions/comments feedback mail
           (do not set a real mail, to avoid spams)
        
           Or remove it if not used.
        
        - Code repository: http://svn.somewhere.com/...
        - Questions and comments to somemailing_list
        - Report bugs at http://bug.somewhere.com/..
        
        
        Change history
        **************
        
        1.0 (xxxx-xx-xx)
        ----------------
        
        - Created recipe with ZopeSkel
          [""].
        
        Detailed Documentation
        **********************
        
        Tests for jalon.pas.bdd
        
        test setup
        ----------
        
            >>> from Testing.ZopeTestCase import user_password
            >>> from Products.Five.testbrowser import Browser
            >>> browser = Browser()
        
        Plugin setup
        ------------
        
            >>> acl_users_url = "%s/acl_users" % self.portal.absolute_url()
            >>> browser.addHeader('Authorization', 'Basic %s:%s' % ('portal_owner', user_password))
            >>> browser.open("%s/manage_main" % acl_users_url)
            >>> browser.url
            'http://nohost/plone/acl_users/manage_main'
            >>> form = browser.getForm(index=0)
            >>> select = form.getControl(name=':action')
        
        jalon.pas.bdd should be in the list of installable plugins:
        
            >>> 'Bdd Helper' in select.displayOptions
            True
        
        and we can select it:
        
            >>> select.getControl('Bdd Helper').click()
            >>> select.displayValue
            ['Bdd Helper']
            >>> select.value
            ['manage_addProduct/jalon.pas.bdd/manage_add_bdd_helper_form']
        
        we add 'Bdd Helper' to acl_users:
        
            >>> from jalon.pas.bdd.plugin import BddHelper
            >>> myhelper = BddHelper('myplugin', 'Bdd Helper')
            >>> self.portal.acl_users['myplugin'] = myhelper
        
        and so on. Continue your tests here
        
            >>> 'ALL OK'
            'ALL OK'
        
        
        Contributors
        ************
        
        "", Author
        
        
        Download
        ********
        
Platform: UNKNOWN
Classifier: Framework :: Plone
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
