コード例 #1
0
ファイル: test_rospkg_os_detect.py プロジェクト: gtmtg/rospkg
def test__read_stdout():
    from rospkg.os_detect import _read_stdout
    assert 'hello' == _read_stdout(['echo', 'hello'])
    assert None == _read_stdout(['bad-command-input-for-rospkg-os-detect'])
コード例 #2
0
def test__read_stdout():
    from rospkg.os_detect import _read_stdout
    assert 'hello' == _read_stdout(['echo', 'hello'])
    assert _read_stdout(['bad-command-input-for-rospkg-os-detect']) is None