Create all objects available
(self, model)
| 358 | |
| 359 | @pytest.mark.skipif('config.getoption("model") != Hamlib.RIG_MODEL_DUMMY') |
| 360 | def test_object_creation(self, model): |
| 361 | """Create all objects available""" |
| 362 | rig = Hamlib.Rig(model) |
| 363 | assert rig is not None |
| 364 | |
| 365 | assert isinstance(rig.caps, Hamlib.rig_caps) |
| 366 | assert isinstance(rig.state, Hamlib.rig_state) |