mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-21 11:20:04 +02:00
17 lines
369 B
Python
Executable File
17 lines
369 B
Python
Executable File
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Tests for hostname related functions of the detector
|
|
"""
|
|
import pytest
|
|
import config_test
|
|
from fixtures import detector, eiger, jungfrau, eigertest, jungfrautest
|
|
from sls_detector.errors import DetectorValueError
|
|
|
|
|
|
|
|
def test_firmware_version(detector):
|
|
assert detector.firmware_version == config_test.fw_version
|
|
|
|
|