tests/test_cmd.py
author Alexander Solovyov <piranha@piranha.org.ua>
Thu, 11 Feb 2010 18:48:44 +0200
changeset 101 7507884b8dff
parent 96 82aaeccffbec
permissions -rw-r--r--
Fix help for options with functions as their default arguments

#!/usr/bin/env python

import opster

config_opts=[('c', 'config', 'webshops.ini', 'config file to use')]

@opster.command(config_opts)
def initdb(config):
    """Initialize database"""
    pass

@opster.command(config_opts)
def runserver(listen=('l', 'localhost', 'ip to listen on'),
              port=('p', 5000, 'port to listen on'),
              **opts):
    """Run development server"""
    print locals()

if __name__ == '__main__':
    opster.dispatch()