Index: test/introspection |
diff --git a/test/introspection b/test/introspection |
new file mode 100755 |
index 0000000000000000000000000000000000000000..772a1db7ba21a54316b6f22ff69b5d0eb5bc5d60 |
--- /dev/null |
+++ b/test/introspection |
@@ -0,0 +1,9 @@ |
+#!/usr/bin/python |
+ |
+import dbus |
+ |
+bus = dbus.SystemBus() |
+ |
+object = dbus.Interface(bus.get_object("org.chromium.dhcpcd", '/'), |
+ "org.freedesktop.DBus.Introspectable") |
+print object.Introspect() |