# HG changeset patch # User Jeff Hammel # Date 1332646949 25200 # Node ID 1175fbabacaf21d4bc38fd922978f0b5ac317048 # Parent 35f57b21885ff25696b2cffbbfb65a5c96559e7a more stubbing diff -r 35f57b21885f -r 1175fbabacaf tests/example.py --- 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