changeset 3:1175fbabacaf

more stubbing
author Jeff Hammel <jhammel@mozilla.com>
date Sat, 24 Mar 2012 20:42:29 -0700
parents 35f57b21885f
children 92e1b2dd60c8
files tests/example.py
diffstat 1 files changed, 13 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/tests/example.py	Sat Mar 24 11:43:45 2012 -0700
+++ b/tests/example.py	Sat Mar 24 20:42:29 2012 -0700
@@ -2,3 +2,16 @@
 
 class ExampleConfiguration(Configuration):
     """example configuration instance"""
+    options = {
+        'activeTests': {'type': list,
+                        'required': "No tests specified; please specify --activeTests",
+                        'help': 'Specify tests to run',
+                        'flags': ['-a', '--activeTests']}, # command line flags
+        'title': {'help': 'talos run title'},
+        'browser_path': {'required': True,
+                         'flags': ['-e', '--executablePath'],
+                         'help': 'path to firefox'}
+        }
+
+if __name__ == '__main__':
+    pass