| Index: test/flimflam.py
|
| diff --git a/test/flimflam.py b/test/flimflam.py
|
| index fd27318627b8c57331b6a88360a43c877a168210..f71a28c1798084d703e28dc30a509e901830bc7c 100644
|
| --- a/test/flimflam.py
|
| +++ b/test/flimflam.py
|
| @@ -244,6 +244,23 @@ class FlimFlam(object):
|
| properties = self.manager.GetProperties()
|
| return self.GetObjectInterface("Profile", properties["ActiveProfile"])
|
|
|
| + def CreateProfile(self, ident):
|
| + path = self.manager.CreateProfile(ident)
|
| + return self.GetObjectInterface("Profile", path)
|
| +
|
| + def RemoveProfile(self, ident):
|
| + self.manager.RemoveProfile(ident)
|
| +
|
| + def PushProfile(self, ident):
|
| + path = self.manager.PushProfile(ident)
|
| + return self.GetObjectInterface("Profile", path)
|
| +
|
| + def PopProfile(self, ident):
|
| + self.manager.PopProfile(ident)
|
| +
|
| + def PopAnyProfile(self):
|
| + self.manager.PopAnyProfile()
|
| +
|
| def GetSystemState(self):
|
| properties = self.manager.GetProperties()
|
| return properties["State"]
|
|
|