summaryrefslogtreecommitdiff
path: root/test/baseline/feat-option_py.test
blob: 1b2a0c79520d1ee2dcf89bce807877415691025e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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