mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-07 07:23:43 +00:00
9 lines
213 B
Python
9 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)
|
|
|
|
|
|
|