Test longcepo plugin module
()
| 121 | |
| 122 | |
| 123 | def test_longcepo_plugin(): |
| 124 | """Test longcepo plugin module""" |
| 125 | import optillm.plugins.longcepo_plugin as plugin |
| 126 | assert hasattr(plugin, 'run') |
| 127 | assert hasattr(plugin, 'SLUG') |
| 128 | assert plugin.SLUG == "longcepo" |
| 129 | |
| 130 | # Test submodule can be imported |
| 131 | from optillm.plugins.longcepo import run_longcepo |
| 132 | assert run_longcepo is not None |
| 133 | |
| 134 | |
| 135 | def test_spl_plugin(): |