Add a testcase for destroyObject

Validate that:
  -Dbus signal callbacks are established.
  -The propertyChangedTo filter works correctly.
  -The destroyObject action works correctly.

Change-Id: I0981fed76aa26ff275a401ae81fd230833dfc4cc
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/example/events.d/match2.yaml b/example/events.d/match2.yaml
index d31a694..84b28f1 100644
--- a/example/events.d/match2.yaml
+++ b/example/events.d/match2.yaml
@@ -4,25 +4,30 @@
 events:
     - name: Example Match(2)
       description: >
-          Matches any PropertiesChanged signal emitted
-          by /xyz/openbmc_project/testing.
+          Destroys the /deleteme1 and /deleteme2 objects
+          When the value of ExampleProperty2 on
+          /testing/inventory/trigger changes to xxxyyy.
       type: match
       signatures:
           - type: signal
-            path: /xyz/openbmc_project/Inventory/example
+            path: /testing/inventory/trigger1
             interface: org.freedesktop.DBus.Properties
             member: PropertiesChanged
       filters:
           - name: propertyChangedTo
             args:
-              interface: xyz.openbmc_project.Example.Iface1
-              property: ExampleProperty1
+              interface: xyz.openbmc_project.Example.Iface2
+              property: ExampleProperty2
               value:
                   type: string
-                  value: testString
+                  value: xxxyyy
       actions:
           - name: destroyObject
             args:
-                path: Example
+                path: /deleteme1
+          - name: destroyObject
+            args:
+                path: /deleteme2
+
 
 # vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4