コード例 #1
0
ファイル: test_utils.py プロジェクト: klauer/ophyd
    def test_waveform_to_string(self):
        s = 'abcdefg'
        asc = [ord(c) for c in s]
        self.assertEquals(epics_utils.waveform_to_string(asc), s)

        asc = [ord(c) for c in s] + [0, 0, 0]
        self.assertEquals(epics_utils.waveform_to_string(asc), s)
コード例 #2
0
ファイル: test_utils.py プロジェクト: ke-zhang-rd/ophyd
def test_waveform_to_string():
    s = 'abcdefg'
    asc = [ord(c) for c in s]
    assert epics_utils.waveform_to_string(asc) == s

    asc = [ord(c) for c in s] + [0, 0, 0]
    assert epics_utils.waveform_to_string(asc) == s
コード例 #3
0
ファイル: test_utils.py プロジェクト: NSLS-II/ophyd
def test_waveform_to_string():
    s = 'abcdefg'
    asc = [ord(c) for c in s]
    assert epics_utils.waveform_to_string(asc) == s

    asc = [ord(c) for c in s] + [0, 0, 0]
    assert epics_utils.waveform_to_string(asc) == s