pydu/tests/test_cmd.py

9 lines
172 B
Python
Raw Normal View History

from pydu.compat import text_type
from pydu.cmd import sys_argv
def test_sys_argv():
argv = sys_argv()
for s in argv[1:]:
assert isinstance(s, text_type)