Create all objects available
(self, model)
| 119 | |
| 120 | @pytest.mark.skipif('config.getoption("model") != Hamlib.ROT_MODEL_DUMMY') |
| 121 | def test_object_creation(self, model): |
| 122 | """Create all objects available""" |
| 123 | rot = Hamlib.Rig(model) |
| 124 | assert rot is not None |
| 125 | |
| 126 | assert isinstance(rot.caps, Hamlib.rig_caps) |
| 127 | assert isinstance(rot.state, Hamlib.rig_state) |