summaryrefslogtreecommitdiffstats
path: root/vstf/vstf/common/test_func.py
blob: 9b1d24f97feac78cbd430aad973def1afa30a00b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from vstf.common import cliutil as util


@util.arg("--test",
          dest="test",
          default="",
          help="a params of test-xx")
@util.arg("--xx",
          dest="xx",
          default="",
          help="a params of test-xx")
def do_test_xx(args):
    """this is a help doc"""
    print "run test01 " + args.test + args.xx