Skip to content

Commit 12965bf

Browse files
committed
remove test because method is removed
Signed-off-by: adamrtalbot <12817534+adamrtalbot@users.noreply.github.com>
1 parent 3a1cbaf commit 12965bf

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

plugins/nf-azure/src/test/nextflow/cloud/azure/batch/AzBatchTaskHandlerTest.groovy

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,6 @@ import spock.lang.Specification
1818
*/
1919
class AzBatchTaskHandlerTest extends Specification {
2020

21-
def 'should validate config with and without container' () {
22-
when:
23-
def task = Mock(TaskRun) { getName() >> 'foo' }
24-
and:
25-
new AzBatchTaskHandler(task: task)
26-
.validateConfiguration()
27-
then:
28-
noExceptionThrown()
29-
30-
when:
31-
task = Mock(TaskRun) { getName() >> 'foo'; getContainer() >> 'ubuntu' }
32-
and:
33-
new AzBatchTaskHandler(task: task)
34-
.validateConfiguration()
35-
then:
36-
noExceptionThrown()
37-
}
38-
3921
def 'should submit task' () {
4022
given:
4123
def builder = Mock(BashWrapperBuilder)

0 commit comments

Comments
 (0)