view profilemanager/tests/test_profilemanager.txt @ 23:a8601c2273b5

* hopefully fix tests * correct typo in ProfileManager
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 06 May 2010 15:43:02 -0700
parents 4a1815f8d146
children 5988a15da3b4
line wrap: on
line source

Test ProfileManager
===================

The obligatory imports:

    >>> import os
    >>> from profilemanager import ProfileManager

Get the path to the test profiles.ini file:

    >>> from pkg_resources import resource_filename
    >>> path = os.path.join('tests', 'profiles', 'profiles.ini')
    >>> profiles = resource_filename('profilemanager', path)

Instatiate a ProfileManager:

    >>> manager = ProfileManager(profiles)

(I should delete any existing profiles at this point, but instead I'll
defer this to later.)

Create a new profile:

    >>> profiledir = manager.new('testprofile')
    >>> profiledir
    '...profilemanager/tests/profiles/...testprofile'

Cleanup:

    >>> manager.remove('testprofile')