github.com/tri-stone/burrow@v0.25.0/tests/jobs_fixtures/app43-string-concatenation/deploy.yaml (about)

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