MCPcopy Create free account
hub / github.com/algorithmicsuperintelligence/optillm / test_memory_plugin_structure

Function test_memory_plugin_structure

tests/test_plugins.py:62–68  ·  view source on GitHub ↗

Test memory plugin has required structure

()

Source from the content-addressed store, hash-verified

60
61
62def 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
71def test_genselect_plugin():

Callers 1

test_plugins.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected