mirror of
https://github.com/jankae/LibreVNA.git
synced 2025-12-06 07:12:10 +01:00
10 lines
213 B
Python
10 lines
213 B
Python
from tests.TestBase import TestBase
|
|
|
|
class TestConnect(TestBase):
|
|
def test_temperature(self):
|
|
res = self.vna.query(":DEV:INF:TEMP?")
|
|
self.assertEqual(len(res.split("/")), 3)
|
|
|
|
|
|
|