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:
2020-01-06 08:44:53 +01:00
parent 588f3d7af7
commit 7c7c1cc5af
5 changed files with 22 additions and 22 deletions

View File

@ -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 ='|'