-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from DiamondLightSource/fix-gui-pvs
Fix GUI PVs with no attribute path
- Loading branch information
Showing
2 changed files
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from fastcs.backends.epics.gui import EpicsGUI | ||
from fastcs.controller import Controller | ||
from fastcs.mapping import Mapping | ||
|
||
|
||
def test_get_pv(): | ||
gui = EpicsGUI(Mapping(Controller()), "DEVICE") | ||
|
||
assert gui._get_pv([], "A") == "DEVICE:A" | ||
assert gui._get_pv(["B"], "C") == "DEVICE:B:C" | ||
assert gui._get_pv(["D", "E"], "F") == "DEVICE:D:E:F" |