From 5da6d15372dd21a4cc9be708235cdb1ca4b8fd49 Mon Sep 17 00:00:00 2001 From: vsoch Date: Fri, 10 Jan 2025 15:59:46 -0700 Subject: [PATCH] flux-executor: add simple test case for jobid with f Signed-off-by: vsoch --- .../groovy/nextflow/executor/FluxExecutorTest.groovy | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/modules/nextflow/src/test/groovy/nextflow/executor/FluxExecutorTest.groovy b/modules/nextflow/src/test/groovy/nextflow/executor/FluxExecutorTest.groovy index 95a90e65bc..31c71b4e7e 100644 --- a/modules/nextflow/src/test/groovy/nextflow/executor/FluxExecutorTest.groovy +++ b/modules/nextflow/src/test/groovy/nextflow/executor/FluxExecutorTest.groovy @@ -38,6 +38,15 @@ class FluxExecutorTest extends Specification { exec.parseJobId('ƒ6nmtLVpBq') == 'ƒ6nmtLVpBq' } + def testParseJobID() { + + given: + def exec = [:] as FluxExecutor + + expect: + exec.parseJobId('f6nmtLVpBq') == 'f6nmtLVpBq' + } + def testKill() { given: