Commit 82e675d3 authored by quyuan's avatar quyuan

add cli test

parent a1a1d177
This diff is collapsed.
This diff is collapsed.
File added
This diff is collapsed.
File added
File added
import subprocess import subprocess
import os
def check_shell(cmd): def check_shell(cmd):
res = subprocess.check_output(cmd, shell=True) res = os.system(cmd)
assert res == 0 assert res == 0
def count_folders_and_check_contents(directory): def count_folders_and_check_contents(directory):
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment