ledger/test/baseline/feat-option_py.test
2012-03-30 04:49:19 -05:00

14 lines
291 B
Text

python
def option_pyfirst(context):
print "In --pyfirst (from %s)" % context
def option_pysecond(context, val):
print "In --pysecond=%s (from %s)" % (val, context)
--pyfirst
--pysecond Hey
test reg
In --pyfirst (from $FILE)
In --pysecond=Hey (from $FILE)
end test