tests/test2
author Andrey Vlasovskikh <andrey.vlasovskikh@gmail.com>
Tue, 19 Oct 2010 17:45:55 +0400
changeset 126 7a5c5746d4f0
parent 111 e40251bf5a23
permissions -rwxr-xr-x
Explicit use of Python 2 for Arch Linux

#!/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()
    assert a == 42, "WTF???"