示例#1
0
 def test_check_args(self):
     args = cli.expand_args(self.args_good)
     assert cli.check_args(args) == 1
示例#2
0
 def test_clone_path(self):
     args = cli.expand_args(self.args_good)
     cloner.clone_path(args['src'], args['dst'], 1)
示例#3
0
 def test_expand_args(self):
     args = cli.expand_args(self.args_good)
     assert (len(args['src']) == len(args['dst']) == 2)