Test spl plugin module
()
| 133 | |
| 134 | |
| 135 | def test_spl_plugin(): |
| 136 | """Test spl plugin module""" |
| 137 | import optillm.plugins.spl_plugin as plugin |
| 138 | assert hasattr(plugin, 'run') |
| 139 | assert hasattr(plugin, 'SLUG') |
| 140 | assert plugin.SLUG == "spl" |
| 141 | |
| 142 | # Test submodule can be imported |
| 143 | from optillm.plugins.spl import run_spl |
| 144 | assert run_spl is not None |
| 145 | |
| 146 | |
| 147 | def test_proxy_plugin(): |