We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a1cbaf commit 12965bfCopy full SHA for 12965bf
plugins/nf-azure/src/test/nextflow/cloud/azure/batch/AzBatchTaskHandlerTest.groovy
@@ -18,24 +18,6 @@ import spock.lang.Specification
18
*/
19
class AzBatchTaskHandlerTest extends Specification {
20
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
31
- task = Mock(TaskRun) { getName() >> 'foo'; getContainer() >> 'ubuntu' }
32
33
34
35
36
37
- }
38
39
def 'should submit task' () {
40
given:
41
def builder = Mock(BashWrapperBuilder)
0 commit comments