summaryrefslogtreecommitdiff
path: root/test/baseline/feat-option_py.test
blob: 77a756608186373a72d71c2483eb6e5962d539aa (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