Test genselect plugin module
()
| 69 | |
| 70 | |
| 71 | def test_genselect_plugin(): |
| 72 | """Test genselect plugin module""" |
| 73 | import optillm.plugins.genselect_plugin as plugin |
| 74 | assert hasattr(plugin, 'run') |
| 75 | assert hasattr(plugin, 'SLUG') |
| 76 | assert hasattr(plugin, 'DEFAULT_NUM_CANDIDATES') |
| 77 | assert plugin.SLUG == "genselect" |
| 78 | |
| 79 | |
| 80 | def test_majority_voting_plugin(): |