Skip to content

Commit

Permalink
test: Remove commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Jan 23, 2023
1 parent 5f0cc88 commit 4f7bd03
Showing 1 changed file with 7 additions and 138 deletions.
145 changes: 7 additions & 138 deletions tests/functions/demultiplex.nf.test
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,7 @@ nextflow_function {
name "Test Functions"
script "workflows/demultiplex.nf"

// TODO test("Test Function summary_params = NfcoreSchema.paramsSummaryMap") {

// function "summary_params = NfcoreSchema.paramsSummaryMap"

// when {
// function {
// """
// // define inputs of the function here. Example:
// // input[0] = 1
// """
// }
// }

// then {
// assert function.success
// assert snapshot(function.result).match()
// }

// }
// TODO test("Test Function summary_params = NfcoreSchema.paramsSummaryMap")

test("Test Function extract_csv") {

Expand All @@ -43,124 +25,11 @@ nextflow_function {

}

// TODO test("Test Function all_columns = input_schema.columns.keySet().collect") {

// function "all_columns = input_schema.columns.keySet().collect"

// when {
// function {
// """
// // define inputs of the function here. Example:
// // input[0] = 1
// """
// }
// }

// then {
// assert function.success
// assert snapshot(function.result).match()
// }

// }

// TODO test("Test Function commons = all_columns.intersect") {

// function "commons = all_columns.intersect"

// when {
// function {
// """
// // define inputs of the function here. Example:
// // input[0] = 1
// """
// }
// }

// then {
// assert function.success
// assert snapshot(function.result).match()
// }

// }

// TODO test("Test Function diffs = all_columns.plus") {

// function "diffs = all_columns.plus"

// when {
// function {
// """
// // define inputs of the function here. Example:
// // input[0] = 1
// """
// }
// }

// then {
// assert function.success
// assert snapshot(function.result).match()
// }

// }

// TODO test("Test Function parse_flowcell_csv") {

// function "parse_flowcell_csv"

// when {
// function {
// """
// // define inputs of the function here. Example:
// // input[0] = 1
// """
// }
// }

// then {
// assert function.success
// assert snapshot(function.result).match()
// }

// }

// TODO test("Test Function flowcell = file") {

// function "flowcell = file"

// when {
// function {
// """
// // define inputs of the function here. Example:
// // input[0] = 1
// """
// }
// }

// then {
// assert function.success
// assert snapshot(function.result).match()
// }

// }

// TODO test("Test Function samplesheet = file") {

// function "samplesheet = file"

// when {
// function {
// """
// // define inputs of the function here. Example:
// // input[0] = 1
// """
// }
// }

// then {
// assert function.success
// assert snapshot(function.result).match()
// }

// }
// TODO test("Test Function all_columns = input_schema.columns.keySet().collect")
// TODO test("Test Function commons = all_columns.intersect")
// TODO test("Test Function diffs = all_columns.plus")
// TODO test("Test Function parse_flowcell_csv")
// TODO test("Test Function flowcell = file")
// TODO test("Test Function samplesheet = file")

}

0 comments on commit 4f7bd03

Please sign in to comment.