tests/test2
author Anton Dutov <anton@dutov.org>
Mon, 09 Nov 2009 23:31:37 +0200
changeset 97 46afc08b68ff
parent 96 82aaeccffbec
child 111 e40251bf5a23
permissions -rwxr-xr-x
various py3k incompatibilities removed

#!/usr/bin/env python

from opster import command

a = 0

@command(usage="%name [-p|--pptx] [-x|--xslx] [-w|--wrdx] [-a|--abstract]")
def main(pptx=('p', False, 'should we generate pptx related code'),
         xslx=('x', False, 'should we generate xslx related code'),
         wrdx=('w', False, 'should we generate wrdx related code'),
         abstract=('a', False, 'should we generate abstract ifaces')):
    """
    Code generation tool. Run without params to regenerate all the code
    """
    global a
    a = 42

if __name__ == '__main__':
    main(argv=[])
    assert a == 42, "WTF???"