forked from p15670423/monkey
island: Assert isdir() in test_monkey_island_abs_path()
This commit is contained in:
parent
00434b9a25
commit
b0ac07553a
|
@ -1,5 +1,8 @@
|
|||
import os
|
||||
|
||||
from monkey_island.cc.server_utils import consts
|
||||
|
||||
|
||||
def test_monkey_island_abs_path():
|
||||
assert consts.MONKEY_ISLAND_ABS_PATH.endswith("monkey_island")
|
||||
assert os.path.isdir(consts.MONKEY_ISLAND_ABS_PATH)
|
||||
|
|
Loading…
Reference in New Issue