pydu/tests/test_cmd.py

9 lines
184 B
Python
Raw Normal View History

from pydu.compat import text_type
2017-11-07 00:15:05 +00:00
from pydu.cmd import cmdline_argv
2017-11-07 00:15:05 +00:00
def test_cmdline_argv():
argv = cmdline_argv()
for s in argv[1:]:
assert isinstance(s, text_type)