def step_impl(context):
output = sh.ls("tmp").stdout.decode("utf-8")
ok = True
for row in context.table:
if row["name"] not in output:
ok = False
break
assert_that(ok).is_equal_to(True)
sh.rm("-rf", "tmp")
for row in context.table:
bucket.delete_object(row["name"])
评论列表
文章目录