This commit is contained in:
2026-08-23 13:06:39 +02:00
parent b0a5447797
commit f227d054b8
18 changed files with 819 additions and 30 deletions

View File

@@ -0,0 +1,22 @@
package recreationaltech.plugin
import nextflow.Session
import spock.lang.Specification
/**
* Implements a basic factory test
*
*/
class K8sDvfsObserverTest extends Specification {
def 'should create the observer instance' () {
given:
def factory = new K8sDvfsFactory()
when:
def result = factory.create(Mock(Session))
then:
result.size() == 1
result.first() instanceof K8sDvfsObserver
}
}