github.com/tri-stone/burrow@v0.25.0/tests/jobs_fixtures/app46-meta-mixed-with-normal/deploy.yaml (about)

     1  jobs:
     2  
     3  - name: app43
     4    meta:
     5      file: '../app43-string-concatenation/deploy.yaml'
     6  
     7  - name: setVar1
     8    set:
     9      val: 'The Batmobile Is'
    10  
    11  - name: setVar2
    12    set:
    13      val: 'Bruce Waynes Lambourgini'
    14  
    15  - name: tester
    16    deploy:
    17      contract: test.sol
    18  
    19  - name: setVar1
    20    call:
    21      destination: $tester
    22      function: setName
    23      data:
    24      - $setVar1
    25  
    26  - name: addVar2
    27    call:
    28      destination: $tester
    29      function: addName
    30      data:
    31      - $setVar2
    32  
    33  - name: getConcatString
    34    query-contract:
    35        destination: $tester
    36        function: getName
    37  
    38  - name: assertStringEqual
    39    assert:
    40      key: $getConcatString
    41      relation: eq
    42      val: $setVar1 $setVar2
    43