Mercurial > mozilla > hg > ProfileManager
view profilemanager/tests/test_profilemanager.txt @ 22:956f5a4c589a
* restructure utility functions to do less more efficiently
* finish remove function [untested]
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 06 May 2010 15:36:00 -0700 |
parents | 4a1815f8d146 |
children | a8601c2273b5 |
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) Create a new profile: >>> profiledir = manager.new('testprofile') >>> print profiledir ...profilemanager/tests/profiles/...testprofile Cleanup: >>> manager.remove('testprofile')