renamed commandhandler to iohandler
the name commandhandler might be misleading, as it has nothing to do with SECoP commands Change-Id: I31bbe1cefd49927fc591619dc7f41f332cca2c14 Reviewed-on: https://forge.frm2.tum.de/review/c/sine2020/secop/playground/+/22084 Tested-by: JenkinsCodeReview <bjoern_pedersen@frm2.tum.de> Reviewed-by: Markus Zolliker <markus.zolliker@psi.ch>
This commit is contained in:
@ -23,7 +23,7 @@
|
||||
|
||||
import pytest
|
||||
|
||||
from secop.commandhandler import CmdParser, CmdHandler
|
||||
from secop.iohandler import CmdParser, IOHandler
|
||||
from secop.modules import Module, Parameter
|
||||
from secop.datatypes import FloatRange, StringType, IntRange, Property
|
||||
from secop.errors import ProgrammingError
|
||||
@ -91,8 +91,8 @@ class ServerStub:
|
||||
self.dispatcher = DispatcherStub(updates)
|
||||
|
||||
|
||||
def test_CmdHandler():
|
||||
class Hdl(CmdHandler):
|
||||
def test_IOHandler():
|
||||
class Hdl(IOHandler):
|
||||
CMDARGS = ['channel', 'loop']
|
||||
CMDSEPARATOR ='|'
|
||||
|
Reference in New Issue
Block a user