feat-option_py.test 291 B

123456789101112131415
  1. python
  2. def option_pyfirst(context):
  3. print "In --pyfirst (from %s)" % context
  4. def option_pysecond(context, val):
  5. print "In --pysecond=%s (from %s)" % (val, context)
  6. --pyfirst
  7. --pysecond Hey
  8. test reg
  9. In --pyfirst (from $FILE)
  10. In --pysecond=Hey (from $FILE)
  11. end test