Test memory plugin has required structure
()
| 60 | |
| 61 | |
| 62 | def test_memory_plugin_structure(): |
| 63 | """Test memory plugin has required structure""" |
| 64 | import optillm.plugins.memory_plugin as plugin |
| 65 | assert hasattr(plugin, 'run') |
| 66 | assert hasattr(plugin, 'SLUG') |
| 67 | assert plugin.SLUG == "memory" |
| 68 | assert hasattr(plugin, 'Memory') # Check for Memory class |
| 69 | |
| 70 | |
| 71 | def test_genselect_plugin(): |