diff --git a/tests/functions/check_process_outputs.nf b/tests/functions/check_process_outputs.nf deleted file mode 100644 index 75ea4f11..00000000 --- a/tests/functions/check_process_outputs.nf +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env nextflow -nextflow.preview.dsl = 2 - -cheers = Channel.from 'Bonjour', 'Ciao', 'Hello', 'Hola' - -process check_output { - input: - val x from cheers - - script: - """ - echo '$x world!' - """ -}