comparison profilemanager/tests/test_profilemanager.txt @ 19:4a1815f8d146

* stub adding new profile to configuration * stub tests; have one mysterious failure with doctest :(
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 06 May 2010 12:42:27 -0700
parents e846544b4d92
children a8601c2273b5
comparison
equal deleted inserted replaced
18:8e651dd8e9ad 19:4a1815f8d146
16 16
17 >>> manager = ProfileManager(profiles) 17 >>> manager = ProfileManager(profiles)
18 18
19 Create a new profile: 19 Create a new profile:
20 20
21 >>> manager.new('testprofile') 21 >>> profiledir = manager.new('testprofile')
22 >>> print profiledir
23 ...profilemanager/tests/profiles/...testprofile
24
25 Cleanup:
26
27 >>> manager.remove('testprofile')