summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/dbus/mediaconsole.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/dbus/mediaconsole.py b/test/dbus/mediaconsole.py
index d5dfe39..f75a556 100644
--- a/test/dbus/mediaconsole.py
+++ b/test/dbus/mediaconsole.py
@@ -139,10 +139,12 @@ class Container(MediaObject):
path = self._containerIF.CreateContainer(name, type, child_types)
print u"New container path: " + path
-
def print_compatible_resource(self, protocol_info, fltr):
print_properties(self._containerIF.GetCompatibleResource(protocol_info,
fltr))
+ def create_reference(self, file_path):
+ path = self._containerIF.CreateReference(file_path)
+ print u"Reference Path: " + path
class Device(Container):