Index: chrome/test/mini_installer_test/verifier.py |
diff --git a/chrome/test/mini_installer_test/verifier.py b/chrome/test/mini_installer_test/verifier.py |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3d0422d01d3138a396ce0f0340d033fea73178e6 |
--- /dev/null |
+++ b/chrome/test/mini_installer_test/verifier.py |
@@ -0,0 +1,14 @@ |
+# Copyright 2013 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+import registry_verifier |
+ |
+ |
+def Verify(property): |
+ for verifier_name, value in property.iteritems(): |
+ if verifier_name == "RegistryEntries": |
+ registry_verifier.VerifyRegistryEntries(value) |
+ else: |
+ # TODO(sukolsak): implement other verifiers |
+ pass |
gab
2013/07/31 13:45:16
Fail the test in the "else" case. i.e., if someone
sukolsak
2013/07/31 18:20:30
Done.
|